/*******************************************************************************
*                         Peach Slider - Extended Easy Slider 1.5   		   *
*																	           *
*                    												           *
*																	           *
*******************************************************************************/

// This is homepage banner labels

$(document).ready(function()
{	
	$(".bannerProduct").hover
	(
		function()
		{
			$(this).children(".label").animate({bottom: '0px',opacity: '1'},{queue:false,duration:300});
			//$('#bannerPhotos').cycle('pause'); //pauses banner slideshow
		}
		,function()
		{
			$(this).children(".label").animate({bottom:'0px',opacity: '0'},{queue:false,duration:300});
			//$('#bannerPhotos').cycle('resume'); //resumes banner slideshow
		}
	);

});