$(document).ready(function() {
						   
						 animacionInicial();
						 menu();
	});
function getDetalle(detalle){
	
	$.ajax({
			url: "controladorAjax.php",
			cache: false,
			type:"POST",
			data:{detalle:detalle},
			success: function(html){
				$(".detalle").html(html);
			}
		});
	return false;
}

function menu(){
	$(".itm").hover(
		   function(){
			   $(this).animate({height:"60"},400);
		   }
		   ,
		   function(){
			  
			   $(this).animate({height:"70"},200);

		   }
		   );
	
}
function animacionInicial(){
		$(".itm").animate({height:"70",width:"180"},1000);
				   
}