// Home
$(document).ready(function($) {
	$('#albums').tabs();
	
	$("#getToKnow .fans ul li").each(function(index){
		if(index%3==2) $(this).addClass("fix");
	});
	
	$("#twitter .tweets").tweet({
		join_text: "auto",
		username: "therocketsummer",
		avatar_size: 0,
		count: 3,
		auto_join_text_default: "",
		auto_join_text_ed: "",
		auto_join_text_ing: "",
		auto_join_text_reply: "",
		auto_join_text_url: "",
		loading_text: "loading tweets..."
	});
	
	$('#slideShow').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 5000,
		next:   '#next', 
		prev:   '#prev'
	});
	$('#banner').hover(function(){
		$(this).find('.nav').stop().show();
	}, function(){
		$(this).find('.nav').stop().hide();
	});
	
	$('#twitter .tweets ul li:last-child').addClass('noBorder');
	$('#news ul li.entry:last-child').addClass('noBorder');
	$('#tour table tr:last-child').addClass('noBorder');
	
	$('.shopmini ul li.shopminicart .cartminiWrapper .bottom .mid .echospinCart .item .title').find('br').remove();
	$('.shopmini ul li.shopminicart .cartminiWrapper .bottom .mid .echospinCart .footer .checkout a').attr('title','Checkout');
});
