// JavaScript Document
jQuery(document).ready(function(){
		$('#top-nav li:last-child').css('padding-right','0px');		
		$('#top-nav li:last-child').css('background','none');
		$('#footer-nav li:first-child').css('padding-left','0px');
		$('#footer-nav li:first-child').css('border','none');
	
	
	//this function attached focus and blur events with input elements
	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('#name'),'Name');
	
});
