$(document).ready(function () {
	
	$("#com").hide();
	$("#com1").hide();
	
	
	
	$("#terr").click(function () {
		if ( $("#com").is(":hidden") ) {
			$("#com").show();
			$("#com1").hide();
			return false;
			
		}
		
		else  {
			$("#com").hide();
			//bool=3;
		} 
	});
	
	$("#terr1").click(function () {
		if ( $("#com1").is(":hidden") ) {
			$("#com1").show();
			$("#com").hide();
			return false;
		}
		
		else  {
			$("#com1").hide();
			//bool=true;
		} 
	});
	
	 //$("#com:not(:checked)").css("background-color", "yellow");
});

	$("html").click(function (event) {
		
		if ( $("#com1").is(":visible") ||  $("#com").is(":visible") ) {
		target = event.target.href;
			
			if(!target){
				$("#com").hide();
				$("#com1").hide();
							
			}
			
		}
	});

