/******************************************************************************************************
	
	Welcome to Jared's Pretty Cool Right-click Disabler
	Please keep your hands and feet inside the ride at all times.
	
	---------------------------------------------------------------------------------------------------
	
	To use this script, add the following line between the <head> tags of your page:
	
	<script language="JavaScript" type="text/javascript" src="norightclicky.js"></script>
	
	src="norightclicky.js" denotes that this script is in the same directory as the page that uses it,
	so if they're not in the same directory, be sure to modify the src parameter accordingly.
	
*******************************************************************************************************/


// message to display
var message="All images are property of Seven Seas Aquariums, please contact Seven Seas Aquariums for permission to use images.";

// special nifty function to run when someone tries to right-click
function rightClicker(message)
{
	alert(message);
}

// when the context menu is requested (e.g. right-click), run our special function instead :)
document.oncontextmenu = new Function("rightClicker(message); return false;");
