massive_length = 2;
colors_= new Array(massive_length);
colors_[0] = "#C74B4B";
colors_[1] = "white";
var next_ = 0;

$(document).ready(function(){

	$("#div_virttour_btn").click(function(e){
		if ($("#div_virttour").height() == 7) {
			$("#div_virttour").animate( {height:500}, 1500, showFlash )
		}
		else {
			/*$("#div_virttour_flash_container").html('<div id="div_virttour_flash"></div>');*/
			$("#div_virttour").animate( {height:7}, 1000 )
		}
	});
	animateText();
	
});

flashcreate = false;
function showFlash() {
	if (flashcreate == false) {
		flashcreate = true;
		var flashvars = {};
		var params = {
		  menu: "false",
		  wmode: "transparent"
		};
		var attributes = {
		};
		swfobject.embedSWF("/virtual_tour/preloader0.1.swf", "div_virttour_flash", "750", "450", "9.0.0", "/uploads/banners/expressInstall.swf", flashvars, params, attributes);
	}
}

function animateText() {

	headcolor = colors_[next_];
	//document.getElementById("virttour_link").style.color = headcolor;
	if (document.getElementById("locationmap_link")) document.getElementById("locationmap_link").style.color = headcolor;
	next_++;
	if(next_ > massive_length - 1) next_ = 0;
	//$("#virttour_link").toggle();
	window.setTimeout("animateText()", 1000);
}
