// JavaScript Document
$(function() {
$('.acount img')
.hover(
function(){
$(this).stop().animate({
'width':'208px',
                'height':'41px',
               
	            },'fast');
        },
        function () {
            $(this).stop().animate({
                'width':'190px',
                'height':'37px',
               'marginTop':'0px'
            },'fast');
        }
    );
});
