jQuery(document).ready(function($){
								
			var $sections_overlay = $('#sections li div.sections-overlay');
			var $sections_overlay_single = $('.thumbnail-single div.sections-overlay');
	
	
		$("div.sections-overlay").css({opacity: "0", backgroundPosition: "-0px -287px"});
		$("div.thumbnail-div").hover(function () {
		//$(this).stop().animate({marginTop: "-10px"}, 450);
		$(this).find("div.sections-overlay").stop().animate({opacity: "1", backgroundPosition:"(0px 0px)"}, {duration:900});
		},
		function () {
			//$(this).stop().animate({marginTop: "0px"}, 450);
			$(this).find("div.sections-overlay").stop().animate({opacity: "0", backgroundPosition:"(0px -387px)"}, {duration:550});
		});
		
		$sections_overlay.css("opacity","0");
		$sections_overlay.hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		function () {
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
		
		$sections_overlay_single.css("opacity","0");
		$sections_overlay_single.hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		function () {
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
	});
