function fieldClear(elem){
	$(elem).focus(function(){
		if (this.defaultValue == this.value) this.value = "";
	});
	$(elem).blur(function(){
		if (this.value == "") {this.value = this.defaultValue;}
	});
}

$(document).ready(function(){				
	fieldClear('.searchField input');
	$('#navigation ul li:last-child').addClass('bg-none');
	
});

window.onload = function(){
	$('.footerNav').css('width', $('.footerNav ul').width());
	$('.footerNav ul li:last-child').addClass('bg-none');
}
