// Change height of Map container div

$(document).ready(function(){

		// Onload set height to 
		$("#mapcontainer").height(125); 
		
		// On click toggle height
		/*$(".expand").click(function () {
			$("#mapcontainer").height(300);
		});*/
		
		
		$("a.expand").toggle(function(){
			$("#mapcontainer").height(300);
			$("a.expand").html("- Contract");
			}, function () {
			$("#mapcontainer").height(125);
			$("a.expand").html("+ Expand");
		});
		
		$("a.toggle").toggle(function(){
			$("#form_container").hide();
			$("a.toggle").html("Show");
			}, function () {
			$("#form_container").show();
			$("a.toggle").html("Hide");
		});
		




		


});