// JavaScript Document
// Copyright 2008 - White Donkey
jQuery(document).ready(function(){
	// Destroy all Humans....
	//$("img").bind("contextmenu", function() { return false; } );
	jQuery("body").bind("contextmenu", function() { alert("The contents of this web site are protected by copyright and may not be used without permission. We aggressively pursue all unauthorized use of our intellectual properties. For information regarding authorized usage please call."); return false; } );
	jQuery(".noClick").bind("mousedown", function() { alert("The contents of this web site are protected by copyright and may not be used without permission. We aggressively pursue all unauthorized use of our intellectual properties. For information regarding authorized usage please call."); return false; } );
	// Setup Category Menu
	jQuery("#catMenuHolder").hide();
	jQuery("#naviCategory").hover(function(){
		$("#catMenuHolder").show();
		$("#flashBadge").hide();
		$("#substitute_badge").show();
	}, function(){ 
		$("#catMenuHolder").hide(); 
		$("#flashBadge").show();
		$("#substitute_badge").hide();
		}
	);
	jQuery("#catMenuHolder").hover(function(){
		$("#catMenuHolder").show(); 
		$("#flashBadge").hide();
		$("#substitute_badge").show();
	}, function(){
		jQuery("#catMenuHolder").hide();
		$("#flashBadge").show();
		$("#substitute_badge").hide();
	});

});