$(document).ready(function() {


    
    anim=0;
    $('a.pop').mouseover(function(){
        /*if(anim == 0){
            anim=1;
            $(this).children("img").css('z-index','100');
            
            $(this).children("img").animate( {left:"-30",top:"-20",width:"260",height:"203"},30 ,function() {
                anim=0;// Animation complete.
            });
        }*/
        //$('a.pop').children("img").css({'z-index':'0', 'left':"110",'top':"0",'width':"204",'height':"161"});
        $(this).children("img").css({'z-index':'100','left':'-30px','top':"-20px",'width':"260px",'height':"203px"});
    }).mouseout(function(){
        
        $(this).children("img").css({'z-index':'0', 'left':"0px",'top':"0px",'width':"204px",'height':"161px"});
        
        /*if(anim == 0){
            $(this).children("img").css('z-index','0');
            $(this).children("img").animate( { left:"0",top:"0",width:"204",height:"161"}, 10 );
        }*/
    });
    
    
    
    anim2=0;
    $('a.pop_fo').mouseover(function(){
        /*
        if(anim2 == 0){
            anim2=1;
            $(this).children("img").css('z-index','100');
            $(this).children("img").animate( {left:"-50",top:"-40",width:"340",height:"290"},25 ,function() {
                anim2=0;// Animation complete.
            });
        }
        */
        $(this).children("img").css({'z-index':'100','left':'-50px','top':"-40px",'width':"340px",'height':"290px"});
    }).mouseout(function(){
        /*
        if(anim2 == 0){
            $(this).children("img").css('z-index','0');
            $(this).children("img").animate( { left:"0",top:"0",width:"230",height:"210"}, 10 );
        }
        */
        $(this).children("img").css({'z-index':'0', 'left':"0px",'top':"0px",'width':"230px",'height':"210px"});
    });

});
