// Welcome to your jquery.base file ... place awesome jquery stuff here to help spruce up / fix / whatever your site. A link to this file has already been placed in each masterpage

$(function() {
	$("td").removeAttr("nowrap");
	
	$('#sub_nav li:first-child a').css({'border-left' : '0px'});
	$('#sub_nav li:first-child').hover(
		function() {
			$(this).css({'background-color' : '#CCCCCC'});
		},
		
		function() {
			$(this).css({'background-color' : '#ffffff'});
		});
		
	$('#sub_nav li:nth-child(3) a').css({'border-right' : '1px solid #000'});	
	$('#sub_nav li:last-child a').css({'padding' : '0px', 'border-left' : '0px'});
	
	
	$("input#qs").focus(
		function () {
         $(this).attr('value','')
   });


});