$(document).ready(function(){
			   
	$('.bottom-nav li:last-child a').css("border","none").css("padding-right","0px");
	
	$('.top-nav li:last-child').css("border","none");
	
	var addFocusAndBlur = function($input, $val){

		$input.focus(function(){
			if (this.value == $val) {this.value = '';}
		});

		$input.blur(function(){
			if (this.value == '') {this.value = $val;}
		});
	}

	// example code to attach the events
	addFocusAndBlur(jQuery('#s'),'Search');
	
});
