$(function(){
	var $slug = location.pathname.replace(/^\//,'').split('/').pop();
	if ($slug == 'location') $slug = 'midwest';
	$('#flashmap').empty().flash({
		    src: '/bin/swf/map.swf',
		    width: 550,
		    height: 336,
		wmode:'transparent',
		flashvars: {slug:$slug}
	});	
	getContent($slug);
});
function changeLocation(loc) {
	document.location.href = '/portfolio/location/'+loc;
}
function getContent(location){
	$.get("/portfolio/getbylocation/"+location, function(data){
	  $('#regions').empty().html(data);
	});
}