/**
 * This is the Digital Mediums JavaScript file.
 * This holds all site-wide init code and common functions.
 */
function switcheroo(f) {
	if (!document.getElementById('flash')) {
		window.location.replace('/index.php?f=' + f);
		return false;
	}
	if (f == '' || f == null)
		f = 'mainstage1'; // hardcoded default! oh snap!
	var params = { wmode: "transparent", quality: "high" };
	swfobject.embedSWF("http://assets.digitalmediums.com.s3.amazonaws.com/swf/" + f + ".swf", "flash", "910", "330", "9", null, params, params);
}

$(document).ready(function() {
	var params = { wmode: "transparent", quality: "high" };
	swfobject.embedSWF("/swf/dm_header.swf", "flashHeader", "1000", "238", "9", null, params, params);
});