/*document.oncontextmenu = function() {
        alert ("Sorry, This function has been disabled! (To bookmark this page please use your browser's toolbar menu)");
		return false;
    }*/
	
window.addEvent('domready', function () {
	
	var images = $$('img');

	for(var i = 0; i < images.length; i++)
	{	
		if((images[i].parentNode.tagName.toLowerCase() == "a") && (images[i].parentNode.rel.toLowerCase() != "lightbox"))
		{
			continue;
		}
		else
		{
			images[i].oncontextmenu = function (){
				alert ("Sorry, This function has been disabled!");
				return false; 
				} 
		}
	} 
});
