$(document).ready(function() {

    var move = 0
    zoom = 1.6;
    var width = $('#moduleForm301839 li.member img').width();
    var height = $('#moduleForm301839 li.member img').height();    
    
    $('#moduleForm301839 li.member').hover(function() {
    
                    var src = new String($(this).find('img').attr("src"));
                    
                    //alert(src);
                    //var src = new String("http://static.global.ciscoeos.com/avatars/adf/8ba/adf8ba2449a4b68c54a039b78a20ec87_2.jpg");
                    src_new = src.substring(0, src.length-5);
                    src_new +="3.jpg"
						  $(this).find('img').parents('div').css({'position':'relative','z-index':'1'});   
                    $(this).find('img').parents('li').css({'position':'relative','z-index':'1','overflow':'visible'});             
                    $(this).find('img').attr("src", src_new);
        
         
       
               
        $(this).find('img').stop(false,true).css({'z-index':'9999'}).animate({'width':width * zoom, 'height':height * zoom, 'top':move, 'left':move}, {duration:200});

    },
    
    function() {
        
        
		  $(this).find('img').parents('li').css({'z-index':'0'});
        $(this).find('img').stop(false,true).animate({'width':width, 'height':height, 'top':'0', 'left':'0'}, {duration:200});    
    });

});
