flashembed.domReady(function() {
	flashembed("header", {src: "flash/buzz_rich_header.swf", wmode: 'transparent'});		  
});


$("#brownbox").height(520);
$("#content").fadeIn("slow");

function pageSwap(page) {
	
	$("#content").fadeOut("slow",loadNewContent);
	function loadNewContent() {
		$("#content").load(page, function(){
			var height = $("#twocol").height();
			if(height < 520){
				height = 520;
			}
			$("#brownbox").height(height);
			$("#content").fadeIn("slow");
			if(page == "pages/contact_us.php"){
				//alert(page);
				initializeMap();
			}

		});
	}
	
	}