$(document).ready(function() {
	$("a#toggle").click(function(){
   	if($("#menuwrapper").height() < 300) {
	   	$("#menuwrapper").animate({ height: "339px" }, 500 );
			$("#toggle").animate({ top: "290px" }, 500 );
		}
		else {
			$("#menuwrapper").animate({ height: "0px"}, 500);
			$("#toggle").animate({ top: "-12px" }, 500 );
		}
	});
	if($('#route') && $('googlemap')){
		$("#route").click(function(){
			$('#googlemap').attr('src','googlemap/map.php?start='+$('#destination').attr('value'));
		});
	}
});