// jQuery Functions and other Javascript
$(document).ready(function(){
  $.preloadCssImages();
  
  $('#s').focus(function() {
  	if ($(this).val() == "Keyword(s)") { $(this).val(''); }
  });
  $('#s').blur(function() {
  	if ($(this).val() == '') { $(this).val('Keyword(s)'); }
  })
  
  $('#email').focus(function() {
  	if ($(this).val() == "Your email address") { $(this).val(''); }
  });
  $('#email').blur(function() {
  	if ($(this).val() == '') { $(this).val('Your email address'); }
  })
  
  $('#nav li.parent').hover(function() {
  	$(this).addClass('hover');
  }, function() {
  	$(this).removeClass('hover');
  });
  
}); 
