var inAnimation = false;
$('.items p a').live('mouseover',function(){

    if(inAnimation){
        return false;
    }
    var $description = $(this).parents('p').next().html();
    var $text = $(this).parents('p').next().children().text();
//    console.info($description);

    if($text == $('.rest_preview .description p').text()){
        return false;
    }
    if(fadeOutDescription()){
        if(addDescription($description)){
            $('.rest_preview .description').fadeIn(600);
            inAnimation  = false;
        }
    }
});

$('.items img').live('mouseover',function(){
    if(inAnimation){
        return false;
    }
    var $description = $(this).next().next('.rest_description').html();
    var $text = $(this).next().next('.rest_description').children().text();
//    console.info($description);
//    console.info($('.rest_preview .description p').html());
    if($text == $('.rest_preview .description p').text()){
        return false;
    }
    if(fadeOutDescription()){
        if(addDescription($description)){
            $('.rest_preview .description').fadeIn(600);
            inAnimation  = false;
        }
    }
});

function fadeOutDescription(){
    inAnimation = true;
    $('.rest_preview .description').fadeOut(300);
    $('.rest_preview .description').css('display','none');
    return true;
}

function addDescription($text){
    $('.rest_preview .description').html($text);
    return true;
}
