// JQUERY
$(document).ready(function() {
		
	// FORM FIELD TRANSFORM
	//$('form').jqTransform({imgPath:'/js/jqtransformplugin/img/'});

	// IN FIELD LABELING
	$('label').inFieldLabels();

	// DROP DOWN MENU SETTINGS
	function addMega(){
		$(this).addClass("hovering");
	}
				
	function removeMega(){
		$(this).removeClass("hovering");
	}
				
	var megaConfig = {
		interval: 100,
		sensitivity: 4,
		over: addMega,
		timeout: 100,
		out: removeMega
	};
				
	$("li.mega").hoverIntent(megaConfig)

});

// Allows for links to be added and linked to search results
// evoke search with href="javascript:searchSubmit('Term(s) To Search Here');"
function searchSubmit(searchTerm) {
	document.forms[0].q.value = searchTerm;
	document.forms[0].submit();
}