$(document).ready(function(){
    $('.restoran .icoitem a').hover(
        function(){
            $(this).parent().find('img').fadeOut(600);
            //$('p', this).css("margin-top", "96px");
        }, function(){
            $(this).parent().find('img').fadeIn(600);
        }
    )
    
    $('#foot .logo a').hover(
        function(){
            $(this).find('img').fadeOut(600);
            //$('p', this).css("margin-top", "96px");
        }, function(){
            $(this).find('img').fadeIn(600);
        }
    )
})
