// JavaScript Document
/*var navHead = function(id,tag,state){
	$("#" + id + " " + tag).each(function(index){
		$(this).click(function(){
			$("#" + id + " " + tag + "." + state).removeClass(state);
			$(this).addClass(state);
		});						   
	});
};*/

var navSele = function(id,tag,state){
	
	$("#" + id + " " + tag).each(function(index){
		$(this).click(function(){
			$("#" + id + " " + tag + "." + state).removeClass(state);
			$(this).addClass(state);
			
			$(".side-cont").children().css("display","none");
			$("#side-cont-" + (index + 1)).css("display","block");
			
		});						   
	});

};

var huntNav = function(id,tag,state){
	
	$("#" + id + " " + tag).each(function(index){
		$(this).click(function(){
			$("#" + id + " " + tag + "." + state).removeClass(state);
			$(this).addClass(state);
			
			$("#hunt-cont").children().css("display","none");
			$("#hunt-cont-" + index).css("display","block");
		});						   
	});

};

