
$(	function(){

		$(".foto-categoria-destacada").each(
				function(index, value)
				{
					var alto= $(value).height();
					var ancho= $(value).width();
//					$(value).attr('dami', 'peron');
					
//					max 174X155
					
					if(ancho> alto)
					{
						
						$(value).css('height', 155);
						$(value).css('width', Math.floor(155* ancho/ alto));
					}
					else
					{
						$(value).css('width', 174);
						$(value).css('height', Math.floor(174* alto/ ancho));
					}
				}
		);
	}
);


/* foto-categoria-destacada */
