$(function(){
	/* Default value */
	$("input.default-value").focus(function() {
    	if (this.value == this.defaultValue) { this.value = ''; }
    }).blur(function() {
      	if (this.value == '') { this.value = this.defaultValue; }
    });

	$('hr').attr('noshade','noshade');
	
	if ($.browser.msie){
		$('#header ul.navigation li:has(ul)').hover(function(){ $(this).addClass('hover'); }, function(){ $(this).removeClass('hover'); });		  
	}
});
