var Crew = {
	flash : function() {
		//differnet flash on the homepage
		if ($('#p_home').get(0)) {
		   var so = new SWFObject("/img/crew.swf", "hmovie", "861", "556", "7", "#32190F");
		}
		else {
						if($('body').attr('id').indexOf('p_corp') > -1)
									var so = new SWFObject("/img/header_corporate.swf", "smovie", "861", "186", "7", "#32190F");
						else if($('body').attr('id').indexOf('p_manda') > -1)
									var so = new SWFObject("/img/header_museums.swf", "smovie", "861", "186", "7", "#32190F");
						else
									var so = new SWFObject("/img/header.swf", "smovie", "861", "186", "7", "#32190F");
		}
		so.addParam("quality", "high");
		so.write("header");
	},
	scrollToAnchors : function() {
		$('#anchs a').click(function(e) {
			e.preventDefault();
			var parts = this.href.split('#');
			$('#'+parts[1]).ScrollTo(800);	
		});
	}
}
$(document).ready(function(){
	/* do not replace content in a text only version of the page */ 	
	if (typeof SWFObject == "function") {
		Crew.flash();
	}
	
	Crew.scrollToAnchors();
	
	$('#more').hide();
	$('#morelink').click(function() {
			$(this).fadeOut('medium', function() {
						$('#more').slideDown('fast', function() {
									$('#more').ScrollTo(800);	
						});
			});
			return false;
	});
});