//Javascript/JQuery flydown effect.
$(function() {
  $(".fly").after("<a href=\"#\" class=\"show\">&raquo;Find out more</a>").hide();
  $("a.show").click(function(){
	if ($(this).prev(".fly").css('display') == 'none') {
		$(this).prev('.fly').slideDown('normal');
		$(this).html("&raquo;Hide this information");
	} else if ($(this).prev(".fly").css('display') == 'block'){
		$(this).prev('.fly').slideUp('normal');
		$(this).html("&raquo;Find out more");
	}
	return false;
  });
	  $("#nav ul ").css({display: "none"}); // Opera Fix
	$("#nav li").hover(function(){
			$(this).find('ul:first').css({visibility: "visible",display: "none"}).show('normal');
			},function(){
			$(this).find('ul:first').css({visibility: "hidden"});
			});
			$('input[type=text]').each(function(){
		this.onfocus = function(){
				if (this.defaultValue == this.value) this.value = '';
			};
			this.onblur= function(){
				if (this.value == '') this.value = this.defaultValue;
			};	
			});
});
