var wzoom=new Array();

$(document).ready(function(){

makerizar();
	
});

function makerizar(){
wzoom=new Array();
	$(".macFX").unbind('mouseenter mouseleave'); 	
	var zin=1;	
	var pulsado='si';
	
	$('.macFX').css({cursor:'pointer'});
	$('.macFX').hover(function(){

		//alert($(this).parent().height());
			if(wzoom[this.id]==null){
			
			
			wzoom[this.id]=$(this).width();
			}
		$(this).css({'z-index': zin++});
		$(this).animate({ width: $(this).width()*0.96+'px'},150);
		
	
	},function(){
				

		$(this).animate({ width: wzoom[this.id]+'px'},150);

	});


	
	
}

