$(document).ready(function() {
		$("ul.galleryList li").hover(function() {
		$(this).css({'z-index' : '10','background':'#f8f8f8','border':'1px #fff solid'}); /*Add a higher z-index value so this image stays on top*/ 
		$(this).find('img').addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
			.animate({
				margin:'-10px',
				top: '-5%',
				left: '+5%',
				width: '220px', /* Set new width */
				height: '146px' /* Set new height */				
				
			}, 200); /* this value of "200" is the speed of how fast/slow this hover animates */
	
		} , function() {
		$(this).css({'z-index' : '0','background':'#e6e6e6','border':'1px #d4d4d4 solid'}); /* Set z-index back to 0 */
		$(this).find('img').removeClass("hover").stop()  /* Remove the "hover" class , then stop animation queue buildup*/
			.animate({
				margin:'10px',				
				top: '0',
				left: '0',
				width: '200px', /* Set width back to default */
				height: '126px' /* Set height back to default */			

			}, 400);
		});
		
		

	});
