jQuery(document).ready(function(){
								
			var $sections_overlay = jQuery('#sections li div.sections-overlay');
			var $sections_overlay_single = jQuery('.thumbnail-single div.sections-overlay');
			var $featured_button_prev = jQuery("#featured-button div.prev-hover");
			var $featured_button_next = jQuery("#featured-button div.next-hover");
			
		

		$featured_button_prev.css("opacity","0");
		$featured_button_prev.hover(function () {
			jQuery(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		function () {
			jQuery(this).stop().animate({
				opacity: 0
			}, "fast");
		});
		$featured_button_next.css("opacity","0");
		$featured_button_next.hover(function () {
			jQuery(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		function () {
			$(this).stop().animate({
				opacity: 0
			}, "fast");
		});


	
		jQuery("#home-wrapper div.sections-overlay").css({opacity: "0", backgroundPosition: "-40px -167px"});
		jQuery("#home-wrapper div.thumbnail-div").hover(function () {
		jQuery(this).stop().animate({marginTop: "-10px"}, 450);
		jQuery(this).find("div.sections-overlay").stop().animate({opacity: "1", backgroundPosition:"(-40px 0px)"}, {duration:1000});
		},
		function () {
			jQuery(this).stop().animate({marginTop: "0px"}, 450);
			jQuery(this).find("div.sections-overlay").stop().animate({opacity: "0", backgroundPosition:"(0px -167px)"}, {duration:1000});
		});
		
		$sections_overlay.css("opacity","0");
		$sections_overlay.hover(function () {
			jQuery(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		function () {
			jQuery(this).stop().animate({
				opacity: 0
			}, "slow");
		});
		
		$sections_overlay_single.css("opacity","0");
		$sections_overlay_single.hover(function () {
			jQuery(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		function () {
			jQuery(this).stop().animate({
				opacity: 0
			}, "slow");
		});
	});
