jQuery(document).ready(function(){

    jQuery('.growImage').mouseover(function(){
      //moving the div left a bit is completely optional
      //but should have the effect of growing the image from the middle.
      jQuery(this).stop().animate({"width": "100%","left":"0px","top":"0px"}, 800,'easeOutBounce');
    }).mouseout(function(){ 
      jQuery(this).stop().animate({"width": "86%","left":"7%","top":"10px"}, 400,'easeOutBounce');
    });;

    jQuery('.growImage').click(function(){
        _gaq.push(['_trackEvent', 'Widgets', 'Home', jQuery(this).attr('data-href')]);
        window.location.href = jQuery(this).attr('data-href');
    });
});
