/*----- List Style -----*/
$(document).ready(function() {
	$("nav ul li:first, ul#footer-nav li:first").addClass("first");
	$("nav ul li:last, ul.wine_tabs li:last").addClass("last");
});
/*---------------------------*/


/*----- Read More + Modal Box -----*/
$(document).ready(function() {
	//slidetoggle
	$('.toggler').click(function(){
		$(this).parents(".textblock, .textblock_home").children('.toggleMe').slideToggle('fast');
		$(this).text($(this).text() == 'Read More' ? 'Close' : 'Read More');
		return false; //ensures no anchor jump
	});
	
	$("a[rel]").overlay({
		mask:{
			color: '#000',
			opacity: 0.6
		},
		effect: 'apple'
	});
});
/*---------------------------*/


/*----- Twitter -----*/
$(document).ready(function() {
	jQuery(function($){
		$("#twitter").tweet({
		  join_text: "auto",
		  username: "byrnevineyards",
		  avatar_size: 0,
		  count: 1,
		  auto_join_text_default: "we said,",
		  auto_join_text_ed: "we",
		  auto_join_text_ing: "we were",
		  auto_join_text_reply: "we replied",
		  auto_join_text_url: "we were checking out",
		  loading_text: "loading tweets..."
		});
	});
});
/*---------------------------*/


/*----- Feature List -----*/
$(document).ready(function() {
	$("ul#wine_tabs").tabs("div#wine_content > div");

	$("#tabs").tabs("#output > li", {
		effect: 'fade', // enable "cross-fading" effect
		fadeOutSpeed: "slow",
		rotate: true
	})
	.slideshow({autoplay:true, interval:4000}); 
});
/*---------------------------*/

