// JavaScript Document

$(document).ready(function() {

	$.featureList(		  
		$("#tabs li a"),
		$("#output li"), {
			start_item	: 0
		}
	);

	/*
	
	// Alternative

	
	$('#tabs li a').featureList({
		output			:	'#output li',
		start_item		:	1
	});

	*/

});

$(function() {
  $(".sli_causellite").jCarouselLite({
	  auto: 3500,
	  speed: 1500,
	  btnNext: ".next",
      btnPrev: ".prev",
	  visible: 1
  });
});

$(document).ready(function(){  
	$(".prev, .next").stop().fadeTo(0.2, 0.3); // This sets the opacity of the thumbs to fade down to 90% when the page loads  
	$(".prev, .next").hover(function(){  
		$(this).stop().fadeTo(200, 1.0); // This should set the opacity to 100% on hover  
	},function(){  
		$(this).stop().fadeTo(500, 0.3); // This should set the opacity back to 90% on mouseout  
	});  
});

$(document).ready(function(){  
	$(".img-day img").stop().fadeTo(0.7, 0.8); // This sets the opacity of the thumbs to fade down to 90% when the page loads  
	$(".img-day img").hover(function(){  
		$(this).stop().fadeTo(200, 1.0); // This should set the opacity to 100% on hover  
	},function(){  
		$(this).stop().fadeTo(500, 0.8); // This should set the opacity back to 90% on mouseout  
	});  
});

$(document).ready(function(){  
	$(".wrap-lifad a, .sli_vertical ul li img").stop().fadeTo(0.8, 0.9); // This sets the opacity of the thumbs to fade down to 90% when the page loads  
	$(".wrap-lifad a, .sli_vertical ul li img").hover(function(){  
		$(this).stop().fadeTo(200, 1.0); // This should set the opacity to 100% on hover  
	},function(){  
		$(this).stop().fadeTo(500, 0.9); // This should set the opacity back to 90% on mouseout  
	});  
});

$(document).ready(function() {
	$(".various1").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
});
