jQuery(document).ready(function(){
	
	jQuery(function(){
		jQuery("#slide-bg img").hide();
		jQuery("#slide-bg img:nth-child(1)").fadeIn(1500);
		jQuery("#callouts").animate({
					    width: "980px",
					    opacity: 1
					  }, 2500 );
		last = 1;
	});

	jQuery("#callouts li").mouseenter(function(){					
		var current = jQuery(this).attr('slideIndex');
		if(last!=current)
		{
			jQuery("#slide-bg img:nth-child("+last+")").fadeOut("slow")
			jQuery("#slide-bg img:nth-child("+current+")").fadeIn("slow");

			last = current;
			jQuery("#callouts li").removeClass('selected');
			jQuery(this).addClass('selected');
		}
	});
});

