/**
 *	@purpose:   disables the showing of context menu's (ea. right-click)
 *	@author:    robert.leurs@cooloxygen.com
 *	@version:   1.0
 */ 

$(document).bind("contextmenu",function(e){
    
    // 01.a. the contextmenu is called.., so display a warning and return false
    
    //alert("The content on this page is copyright protected!");
    return false;
    
    
    // 01.b. or, only return false as an alternative
    /*    
    return false;
    */
});