// JavaScript Document

function mainmenu(){
	
	if (jQuery.browser.opera == false){
		
$("#nav ul").css({display: "none"}); // Opera Fix
$("#nav li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show("400");
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});

	}
	
}


 
 $(document).ready(function(){
mainmenu();						
							
	// #s is the id of the textbox in this example
// This still uses the value of the title attribute
$('#s').focus(function() {
  // See if the input field is the default
  if ($(this).val() == $(this).attr('title')) {
    $(this).val('');
  }
})
.blur(function() {
  if ($(this).val() == '') {
    $(this).val($(this).attr('title'));
  }
});
	
		});/*********doc redy*******/
 