// JavaScript Document
 $(document).ready(function(){
		//MENU BINDINGS
		$("#menu ul li").bind("mouseover",function(){
			if(!$(this).hasClass("active")){
				$(this).addClass("menu-over");	
			}
		}).bind("mouseout",function(){
			if(!$(this).hasClass("active")){
			$(this).removeClass("menu-over");
			}
		}).bind("click",function(){
			var href = $("a",this).attr("href");
			window.location = href;
		});
		
		$("#sub").bind("click",function(){
			if($("#agree:checked").val() == null){
			//alert("Please agree to the terms above");
			//return false;
			}
		});
		
		$("#civilians").bind("click",function(){
			if($("#civilians-div").hasClass("hidden-description")){
				$("#civilians-div").removeClass("hidden-description");
				$("#civilians-div").addClass("visible-description");
			}else{
				$("#civilians-div").removeClass("visible-description");
				$("#civilians-div").addClass("hidden-description");
			}
			return false;
		});
  });

