		jQuery().ready(function(){
		//DROPDOWN MENUS
			function hoverOver(){
				// $(this).find('ul.dropdown').slideDown("fast");				
				$(this).addClass('hover');
			}
			function hoverOut(){
				// $(this).find('ul.dropdown').slideUp("fast");				
				$(this).removeClass('hover');
			}
			
			$('#nav li ul.dropdown li h4').hover(function(){
				$(this).next('p').css("color","white");
			},function(){
				$(this).next('p').css("color","#696969");
			});
			
			//Set custom configurations
			var config = {
			     sensitivity: 7, // number = sensitivity threshold (must be 1 or higher)
			     interval: 100, // number = milliseconds for onMouseOver polling interval
			     over: hoverOver, // function = onMouseOver callback (REQUIRED)
			     timeout: 100, // number = milliseconds delay before onMouseOut
			     out: hoverOut // function = onMouseOut callback (REQUIRED)
			};

			$("#nav li").hoverIntent(config); //Trigger Hover intent with custom configurations
				
		});

function clickclear(thisfield, defaulttext) {
	if (thisfield.value == defaulttext) {
		thisfield.value = "";
	}
}
function clickrecall(thisfield, defaulttext) {
	if (thisfield.value == "") {
		thisfield.value = defaulttext;
	}
}
