




$(document).ready(function() {
	
	
	//-------------------------------------main nav hover-------------------------------------------------
	
	
	$("#help_button").hover(
		
		function () {
			$(this).addClass("selected");
		
      }, 
      	function () {			
			$(this).removeClass("selected");
			
			
      }
    );
	
	/*
	$("#help_button").click(
	
		function(){
		alert($("#help_button").attr("class"));
		
		if($("#help_button").attr("class") == "selected")	
			$(this).removeClass("selected");
		else
			$(this).addClass("selected");
				
	});
	theInterval = function(cur){
		
		setInterval(function(){
			if($("#help_button").attr("class") == "selected")	
				$(this).removeClass("selected");
			else
				$(this).addClass("selected");
					
		}, 2000);
		
	}
	*/
});// end doc ready

