// JavaScript Document

function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}

function resetDefault(el) {
  if (el.value=="") el.value = "Search"
}

$(document).ready(function()
						   {
						   $(".left-nav ul li:last").css("border-bottom", "none");
						   						   $(".scientist:last").css("border-bottom", "none");
												   
												   /*F'in ie7 nav fix*/
												   $("#main-nav span").click(function(ev) { 
													window.location=$(this).parent('a').attr('href');
													ev.preventDefault();
	});

						   });
