﻿$(document).ready( function() {

// Capture right mouseup
    $("#header").rightMouseUp( function(e) {
        alert("You do not have permission to copy images from this website, all images are paid for and under licence by premier male massage.com copyright(c)2009");
    });
    
    // Disable context menu on an element
    $("#header").noContext();
	// Capture right click

    
    // Capture right mouseup
    $("#footer").rightMouseUp( function(e) {
        alert("You do not have permission to copy images from this website, all images are paid for and under licence by premier male massage.com copyright(c)2009");
    });
    
    // Disable context menu on an element
    $("#footer").noContext();
	// Capture right click
	return false;
    
});