$(document).ready(function(){
	// Drop Down Menu
	$("#topNav, #rNav")
		.superfish({
			animation : { opacity:"show"}
	});
	$('.lightbox a').lightBox({fixedNavigation:true});
});

//-------------------- JavaScript - Clear/Replace Fields --------------------
 
function clearText(thefield) {
  if (thefield.defaultValue==thefield.value) { thefield.value = "" }
}


function replaceText(thefield) {
  if (thefield.value=="") { thefield.value = thefield.defaultValue }
}

