function load_imagehh() {

//    alert("My Lebanese Grocer")
    // To avoid the caching problem
    var pic =  new Image();
    pic.src= "images/newspaper.png?nocache="+Math.random();
//    pic.src= "images/newspaper.png?nocache="+(new Date()).getTime();

    document.getElementById('home_image').style.visibility = 'visible';
    document.getElementById('seal_of_quality').style.visibility = 'visible';
    document.getElementById('get_our_news').style.visibility = 'visible';
    document.getElementById('social_in').style.visibility = 'visible';
    document.getElementById('recipes_book').style.visibility = 'visible';
    //    Note: This has to be commented out.  If tableau is not found, it will
    //    cause an error that would subsequently prevent phone from being loaded
//    document.getElementById('tableau').style.visibility = 'visible';
    document.getElementById('phone').style.visibility = 'visible';
}

/*
var message="Function Disabled!";
*/

function clickIE4(){
    if (event.button==2){
        /*
        alert(message);
        */
        return false;
    }
}

function clickNS4(e){
    if (document.layers||document.getElementById&&!document.all){
        if (e.which==2||e.which==3){
            /*
            alert(message);
            */
            return false;
        }
    }
}

function disable_right_mouse() {
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

///////////////////////////////////

if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
} else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("return false")

}

