
$(document).ready(function(){

	$("ul.subnav").parent().append("<span class='arrow'></span>"); //Only shows drop down trigger when js is enabled (Adds empty span tag after ul.subnav*)

	$("ul.topnav li span").live('hover', function() { //When trigger is clicked...

		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).parent().find("ul.subnav").slideDown(500).show(); //Drop down the subnav on click

		$(this).parent().hover(function() {
			}, function(){
			$(this).parent().find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
			
		});

		//Following events are applied to the trigger (Hover events for the trigger)
		}).hover(function() {
			$(this).addClass("subhover"); //On hover over, add class "subhover"
			//$("ul.topnav").animate({height:'200px'}, 500);
		}, function(){	//On Hover Out
			$(this).removeClass("subhover"); //On hover out, remove class "subhover"


	});

	$("ul.topnav").hover( function() {
		var maxHeight = 0;
		var thisHeight = 0;

		$("ul.subnav").each(function() { 
			thisHeight = parseInt($(this).css('height'));
			if (thisHeight > maxHeight) {
				maxHeight = thisHeight;
			}
		});

		maxHeight = parseInt(maxHeight + 35) + "px";


		$("ul.topnav").animate({height: maxHeight}, 500);
	}, function() {
		$("ul.topnav").animate({height:'30px'}, 1000);
	});


	$("input.editbox_search").live('focus', function() {
		if ( $(this).val() == "Search" ) {
			$(this).val("");
		}
	});

	$("input.editbox_search").live('blur', function() {
		if ( $(this).val() == "" ) {
			$(this).val("Search");
		}
	});


	$("form#formsearch .button_search").live('click', function(e) {
		e.preventDefault();
		if ( $("input.editbox_search").val() != "" ) {
			$("form#formsearch").submit();
		}
	});


 });


