$(document).ready(function(){
	$('.main-slideshow').cycle();
	
	$('.home-slideshow').cycle();
	
	//$('.home-feature-pic').cycle();
	
	$('.home-feature-pic').hover(
		function(){
			$(this).find('img:first-child').fadeOut("slow");
		}, function(){
			$(this).find('img:first-child').fadeIn("slow");
		}
	);
});
