$(document).ready(function(){
-	$("#sub-nav > div").hide(); 
	$("#sub-nav > div").eq(1).show(); 
  $("ul.tabs a").hoverIntent( 
  	function() { 
      if ( !$(this).hasClass('selected') ){
  		if ($(this).attr("name") > '') {
  		$("ul.tabs a.selected").removeClass('selected'); 
  		$("#sub-nav > div").hide();
  		$("#"+$(this).attr("name")).fadeIn('slow'); 
  	  };

  		if ($(this).attr("title") > '') {
  		$("#"+$(this).attr("name")).load($(this).attr("title")).fadeIn('slow'); 
  	    } ;
  	
  		if ($(this).attr("name") > '') {
  		$(this).addClass('selected'); 
  	 };
   	  };
 	
  		return false; 
  	}
  ,function() { 
  	}
  );

});
