
jqcc(document).ready(function() {
    jqcc(".avatarImages").hover(function() {
    	jqcc(this).css('z-index', 200);
        jqcc(this).animate({
           height: '100',
           width: '100'
        }, 200);
    }, function() {
        jqcc(this).animate({
        	marginTop: '0', 
			marginLeft: '0',
            height: '65',
            width: "48"
        }, 400, function() {
        	jqcc(this).css('z-index', 0);
        });
    });
});

