$(document).ready(function(){
	$("#selects input").bind("click", function(){
     		
  	var id = $(this).attr("id");
  	$("[@for='"+id+"']").addClass('hide');
   		
	  	$(this).bind("blur", function(){
  			if ($(this).val() == "") $("[@for='"+id+"']").removeClass('hide');
  		});
   });
	
	$("#searchpanel select").bind("click", function(){
     		
  	var id = $(this).attr("id");
  	$("[@for='"+id+"']").addClass('hide');
   		
	  	$(this).bind("blur", function(){
  			if ($(this).val() == "") $("[@for='"+id+"']").removeClass('hide');
  		});
   });
	
	$("#subnav li").hover(
      function () {
		  if($(this).children("a").attr("href")) { 
			  var linkref = $(this).children("a").attr("href");
			  if(linkref != undefined) {
				$(this).addClass("over");
				window.status = linkref;			
				  $(this).bind("click", function(e){
				  window.location.href = linkref;
				});
			  }
	  	  }
      }, 
      function () {
        $(this).removeClass("over");
		window.status = "";
      }
    );
	$("#subnav li:last").addClass("last");	
});