$(document).ready(function(){
	
	$('.top-nav li:last-child a').css("border","none");
	$('.footer-nav li:last-child').css("border","none");
	$('.eq-left-sidebar ul li:last-child').css("border","none");
	$('.construction-plant-menu li:last-child').css("border","none");
	$('.footer-nav li:first-child a').css("paddingLeft","0px");
	
	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');
});
