// Javascript


twttr.anywhere(function(twitter) {
	twitter.hovercards();
});

getTwitters('tweet', { 
	id: 'rainbowjeans416', 
	count: 1, 
	enableLinks: true, 
	ignoreReplies: true, 
	clearContents: true,
	template: '"%text%"<a class="tweet-more" href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time% <span>more</span></a>'
});


$(document).ready(function() {
						   
	
	/*
	==============================================================
		Block Element to Link
	==============================================================
	*/
	
	$('.link')
		.click(function(){
			window.location=$(this).find("a").attr("href");
			return false;
			})
		
		
	/*
	==============================================================
		Link Brands
	==============================================================
	*/
	
	$('.page-id-87 .post li')
		.click(function(){
			window.open('http://www.rainbowjeans.com/products.php?mc=shop&sc=' + $(this).html());
			return false;
			})
		
	/*
	==============================================================
		Add V01 Archives Link to Archives
	==============================================================
	*/
	
	$('#archives-3 ul').append('<li><a href="/v01/" title="Inside Rainbow - Version 01">Older</a></li>');
	
	
});
















