var CurrentPos = 0;
	var timer1 = null;
	
	function Display_Status(){
	
	var status_msg = new Array(6);
			status_msg[0] = "ASP.NET ";
			status_msg[1] = "vb.NET ";
			status_msg[2] = "c#.NET ";
			status_msg[3] = "JavaScript ";
			status_msg[4] = "PHP ";
			status_msg[5] = "C ";
			status_msg[6] = "C++ ";
			status_msg[7] = " - Consultoria - ";
			status_msg[8] = " - Formação - ";
			status_msg[9] = " - Desenvolvimento - ";
	
	var disp_str = "";
	
	for (i= CurrentPos; i < status_msg.length; i++)
	{
	disp_str += status_msg[i];
	disp_str += "   ";
	}
	
	for (i = 0; i < CurrentPos; i++)
	{
	disp_str += status_msg[i];
	disp_str += "   ";
	}
			
			//window.status = Array[CurrentPos];
			window.status = disp_str;
			
			CurrentPos++;
			if (CurrentPos == status_msg.length)
			CurrentPos = 0;
			
			StartTimer();
				
	}
	
	function StartTimer(){
	
	timer1 = setTimeout("Display_Status()", 500);
	}

	function EndTimer(){
	
	timer1 = setTimeout("Display_Status()", 0);
	}
	
	function ChangeToFormationSite(){
	
	//window.alert("test 233!!!");
	//window.location="../site/contactos.html";
	window.open("../site/siteformacao.html");
	//window.open("http://djtc.no-ip.biz");
	//window.alert("test2 again!!!");
	
	}//end function change to Formation site
	
	function ChangeToYDreams(){
	window.open("http://www.ydreams.com");
	}
