            $(function(){
                $('a.zoom').each(function() {
                    var oheight = $(this).children(0).height();
                    var owidth = $(this).children(0).width();
                    var nheight = (oheight + (oheight * 1.5));
                    var nwidth = (owidth + (owidth * 1.5));
                    var top = ((oheight - nheight) / 2);
                    var left = ((owidth - nwidth) / 2);
                    $(this).mouseenter(function() {
                        $(this).css('z-index', '10').children(0).stop().animate({
                                'height' : nheight+'px',
                                'width' : nwidth+'px',
                                'left' : left+'px',
                                'top' : top+'px'}, 210);
                    });
                    $(this).mouseleave(function() {
                        $(this).children(0).stop().animate({
                                'left' : '0px',
                                'top' : '0px',
                                'height' : oheight+'px',
                                'width' : owidth+'px'}, 150, function() {
                                    $(this).css('height', oheight+'px').parent().css('z-index', '1');
                                });
                    });

                });    
            });
