


/*
	** Each SWF file that needs to be inserted should have a separate function.
*/
function insertSWFs() 
{
	if(document.getElementById("vanRotator")) insertRotatorSWF();
	if(document.getElementById("calculator")) insertCalculatorSWF();
};

function insertCalculatorSWF() 
{
	var so = new SWFObject("media/flash/calculator.swf", "Cubic Weight Calculator", "208", "184", "7", "#DCDCDC");
	so.write("calculator");
};

function insertRotatorSWF() 
{
	var so = new SWFObject("media/flash/rotating.swf", "", "346", "222", "6", "#ffffff");
	so.addParam("wmode", "transparent");
	so.write("vanRotator");
};
schedule("window", insertSWFs); 