$(document).ready(function(){
    $('#te_restaurant_menu .links a').mouseover(function(){
        var id = $(this).attr('id');
        var idarr = id.split('_');
        var left = idarr[0];
        var top  = idarr[1];
        
        $('.tabs .display#map').css('background-position',left+" "+top);
        
    });
});

var home_ajax_path = REL_PATH+'/home/home.ajax.php';

function viewMoreFeedback(id){
    
    if($('#more_feedback').is(':visible')){
        $('#more_feedback').hide(0).html('');
        $('#more_feedback_link a').html('View More');
    }else{
    
        var params = "viewMoreFeedback=1&id="+id;
        ajax.request(params,home_ajax_path,function(){
            resp = http.responseText;
            if(resp){
                $('#more_feedback').html(resp).show(0,function(){   
                    $('#more_feedback_link a').html('Hide'); 
                });
            }
        });
    
    }
}
