$(document).ready(function() {
$('#dashboard').hover (
function() {
$(this).animate( {marginLeft: '0px',backgroundColor: 'rgb(27,45,94)'},800,'easeInSine');
//$(this).addClass( "fon" );
}
,
function() {
$(this).animate({marginLeft: '-160px',backgroundColor: 'rgb(55,85,124)' },800, 'easeInSine'
);
});
});