/*
 * DC Mega Menu - jQuery mega menu
 * Copyright (c) 2011 Design Chemical
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 */
  $(function(){
    $('.img2').hover(function(){
      $(this).children('img').stop().animate({width:"430px",height:"613px"}, 400);
    }, function(){ $(this).children('img').stop().animate({width:"55px",height:"65px"}, 400); });
  });

