// JavaScript Document
// startFlash
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
//clip name should match the 'IDhere'_DoFSCommand
function topArea_DoFSCommand(command, args) {
	if (command == "link") {
		if(args == "home"){
			document.location.href="index.html";
		}
		if(args == "email"){
			document.location.href="mailto:info@quad-ventura.com";
		}
	}
}
// Hook for Internet Explorer for intLinkClip 
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
	  navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('Sub topArea_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call topArea_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}
//
// endofFlash