// *************************** jQuery Initialisation **************************** //

$(document).ready(function() {

  // show hide and hover the sub-menus
  $("#header ul ul").hide().css("top", "30px");
  $("#header ul li").hover( function () {
    $(this).find("ul").show();
  }, function () {
    $(this).find("ul").hide();
  } );
  $("#header ul ul li").hover( function () {
    $(this).addClass("hover");
  }, function () {
    $(this).removeClass("hover");
  } );

  // mouse over images
  $('#aboveSite img').imghover();
  $('#header ul img').imghover();
  $('img.mouseover').imghover();

  // scrolling text
  $("#marquee p").marquee();

  // mailto obsfucation
  $('#header a').mailtoObsfucator();

  // default form value restoration
  $('#contactForm input:text').defaultRestore();
  $('#enquiryFormLower input:text').defaultRestore();
  $('#enquiryFormLower textarea').defaultRestore();
  $('#search input:text').defaultRestore();

	
	$('#search').submit( function(){
		var ipt = $('#search > #search_input');
		if( ipt.val() == 'Keywords' ){
			ipt.val('');
			alert('Please enter some keywords to search for.');
			ipt.focus();
			return false;
		}
	});


});

