jQuery.noConflict( );
  jQuery(function(){
    jQuery('.zoom50').hover(function(){
      jQuery(this).children('img').stop(true,true)
			.animate({width:"100px",left:"0",top:"0"}, 500);
    },
		function(){
			jQuery(this).children('img').stop(true,true)
		.animate({width:"50px",left:"0",top:"0"}, 500);
		});
  });
