var hideSub=0;
var showcase;
var showcaseDisplay;

function insertSwfLogo() {
	document.getElementById('animatedlogo').innerHTML = '<object type="application/x-shockwave-flash" data="/container.swf?movie=http://www.vadatech.com/logo.swf" width="304" height="84">\n<param name="movie" value="http://www.vadatech.com/container.swf?movie=http://www.vadatech.com/logo.swf" />\n<param name="wmode" value="transparent"/>\n</object>';
	window.setTimeout('changeProduct(\'1\')', 4000);
}

function insertSwfHeader() {
	document.getElementById('animatedheader').innerHTML = '<object type="application/x-shockwave-flash" data="/container.swf?movie=http://www.vadatech.com/main.swf" width="850" height="461">\n<param name="movie" value="http://www.vadatech.com/container.swf?movie=http://www.vadatech.com/main.swf" />\n<param name="wmode" value="transparent"/>\n</object>';
}

function changeProduct(c) {
	if (!isSafari) { 
		if (document.getElementById('product'+c)) {
			var div = document.getElementById('product'+c);
			showcase[c].start(0);
			c++;
				if(c>3)
				c=1;	
			div.style.background="#fff";
			//new Effect.Fade(div, {duration:.8});
			setTimeout('dropin(\''+c+'\')', 500);
		}
	}

}

function dropin(c) {
	if(c!=1)
		$('product'+(c-1)).style.display= "none";
	else
		$('product3').style.display= "none";
	var div = document.getElementById('product'+c);
	div.style.background="#fff";
	//new Effect.Appear(div, { duration: .8});
	$('product'+c).style.display="";
	showcase[c].start(1);
	setTimeout('changeProduct(\''+c+'\')', 4000);
}

function salesinfo(region) {
	document.getElementById('salescontactdetail').innerHTML = salescontacts[region];
}