
/*******************************************************************************
*                         Peach Slider - Extended Easy Slider 1.5   		   *
*																	           *
*                    				For Our Work page				           *
*																	           *
*******************************************************************************/

$(document).ready(function()
{
	/**
	 * Panel Slider
	 */
	
	// Fade in all banners
	/*
	$(".slide").css('opacity', '0');
	
	*/
		
	// Attach hover event onto each slide for text, to slide up on mouseover and down on mouseout
	$(".slide").hover
	(
		function()
		{
			//$(this).children(".text_slider").animate({top:(179-$(this).children(".text_slider").height())+"px"},{queue:false,duration:200});
			$(this).children(".text_slider").animate({top:'128px',height:'51px',padding: '0px 0px 1px 0px;'},{queue:false,duration:170});
		}
		,function()
		{
			//$(this).children(".text_slider").animate({top:"204px"},{queue:false,duration:400});
			$(this).children(".text_slider").animate({top:'179px',height:'0px'},{queue:false,duration:300});
		}
	);

});