$(document).ready(function(){
						   
$('#header .search input#searchInput, .newsletter input#email').each(function(){	 
	    this.value = $(this).attr('title');
	    $(this).addClass('defaultInput');
	 
	    $(this).focus(function(){
	        if(this.value == $(this).attr('title')) {
	            this.value = '';
	            $(this).removeClass('defaultInput');
	        }
	    });
	 
	    $(this).blur(function(){
	        if(this.value == '') {
	            this.value = $(this).attr('title');
	            $(this).addClass('defaultInput');
	        }
	    });
	});

$('h2').find('span:last').addClass('last');
$('h2').find('span:first').removeClass().addClass('first');

		$('table:not(#removeFL)').find('tr:first').addClass('first');
		$('table:not(#removeFL)').find('tr:last').addClass('last');
		$('table:not(#removeFL) tr').find('td:first').addClass('first');
		$('table:not(#removeFL) tr').find('td:last').addClass('last');
		
		// $('#removeFL').find('tr:first').removeClass('first');
		// $('#removeFL').find('tr:last').removeClass('last');
		// $('#removeFL').find('td:first').removeClass('first');
		// $('#removeFL').find('td:last').removeClass('last');
		// $('#removeFL').find('span:last').removeClass('last');
		// $('#removeFL').find('span:first').removeClass().removeClass('first');
		
		// $('#removeFl tr.first, td.first').removeClass('first');
		
		
		$('#sub-content').find('td:first').removeClass('first');
		$('#sub-content').find('td:last').removeClass('last');
		$('#sub-content').find('tr:first').addClass('first');
		$('#sub-content').find('tr:last').addClass('last');
});
