$(function(){
	$(".navLinks ul").superfish();
	
	$(".mainNavLink").hover(
		function(){
			$(this).parent().addClass("navHover");
		},
		function(){
			$(this).parent().removeClass("navHover");
		}
	);
	
	$(".subNav").bgiframe();
	
	$(".subNav a").each(function(){
		var linkName = $(this).html();
		var newLinkName = linkName.replace(/ /g, "&nbsp;");
		$(this).html(newLinkName);
	});
	
	/*$("input").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	$("textarea").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});*/
});