
$(document).ready(function() {
	$("ul#nav-global").supersubs({ 
	            minWidth:    16, // em
	            maxWidth:    26,
	            extraWidth:  1
	}).superfish({autoArrows:false});
    
    var active_color = "black",
        inactive_color = "#CCC",
	    input_defaults = new Array();
	
	$("input.default-value").css("color", inactive_color).focus(function() {
		if (!input_defaults[this.id]) {
			input_defaults[this.id] = this.value;
		}
		if (this.value == input_defaults[this.id]) {
			this.value = '';
			this.style.color = active_color;
		}
		$(this).blur(function() {
			if (this.value == '') {
				this.style.color = inactive_color;
				this.value = input_defaults[this.id];
			}
		});
	});
});
