$(document).ready(function($){
								
			var $sections_overlay = $('#sections li div.sections-overlay');
			var $sections_overlay_single = $('.thumbnail-single div.sections-overlay');
			var $featured_button_prev = $("#featured-button div.prev-hover");
			var $featured_button_next = $("#featured-button div.next-hover");
			

		$featured_button_prev.css("opacity","0");
		$featured_button_prev.hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		function () {
			$(this).stop().animate({
				opacity: 0
			}, "fast");
		});
		$featured_button_next.css("opacity","0");
		$featured_button_next.hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		function () {
			$(this).stop().animate({
				opacity: 0
			}, "fast");
		});
	});
