
/////////////////////////DEFAULT FORM VALUES TOGGLE

function clickclear(thisfield, defaulttext) {
	
	if (thisfield.value == defaulttext) {
			thisfield.value = "";
	}
}
	
function clickrecall(thisfield, defaulttext) {
	if (thisfield.value == "") {
		thisfield.value = defaulttext;
	}
}
	
	
$(document).ready(function(){
			   
	//prevent right click
    $(document).bind("contextmenu",function(){
        return false;
    });
	
	//prevent image dragging
	$("img").mousedown(function(event){
		if (event.isDefaultPrevented) {
			event.preventDefault();
			//alert("default prevented!");
		}
	});
	

	//drop down menu
	$('#navMenu li').hover(
		function () {
			//show
			$('.dropDown', this).stop(true, true).fadeIn("fast");

		},
		function () {
			//hide
			$('.dropDown', this).stop(true, true).fadeOut("fast");			
		}
	);

	
});
