$(document).ready(function(){
  $('#menu_home').parent().parent().mouseover(function(){
    $('#menu_home_image').rotateAnimation(180);
});

$('#menu_home').parent().parent().mouseleave(function(){
    $('#menu_home_image').rotateAnimation(0);
});

$('#menu_about').parent().parent().mouseover(function(){
    $('#menu_about_image').rotateAnimation(180);
});

$('#menu_about').parent().parent().mouseleave(function(){
    $('#menu_about_image').rotateAnimation(0);
});

$('#menu_work').parent().parent().mouseover(function(){
    $('#menu_work_image').rotateAnimation(180);
});

$('#menu_work').parent().parent().mouseleave(function(){
    $('#menu_work_image').rotateAnimation(0);
});


});





