// Initialize main navigation drop down
$(document).ready(function() { 
	$('#nav-main ul').superfish({ 
		delay:       250,
		animation:   {height:'show'},
		speed:       'normal',
		autoArrows:  false, 
		dropShadows: false
	}); 
});

// Clear footer form titles on focus. Reapply if nothing was typed in.
$(document).ready(function () {
	$("input").focus(function () {
		if ($(this).val() === $(this).attr("title")) {
			$(this).val("");
		}
	}).blur(function () {
		if ($(this).val() === "") {
			$(this).val($(this).attr("title"));
		}
	});
});
