function init () {
	setTimeout ("blink()", 1500); // on
	setTimeout ("blink()", 2000); // off
	setTimeout ("blink()", 2500); // on
	setTimeout ("blink()", 3000); // off
	setTimeout ("blink()", 3500); // on
	
	setTimeout ("blink2()", 5500); // on
	setTimeout ("blink2()", 6000); // off
	setTimeout ("blink2()", 6500); // on
	setTimeout ("blink2()", 7000); // off
	setTimeout ("blink2()", 7500); // on
}

function blink () {

	var elm = document.getElementById ('helpdesk_title');
	
	if (elm.style.color == "white") {
		elm.style.color = "#E6814F";
	} else {
		elm.style.color = "white";
	}
	
}

function blink2 () {

	var elm = document.getElementById ('newsletter_title');
	
	if (elm.style.color == "white") {
		elm.style.color = "#547295";
	} else {
		elm.style.color = "white";
	}
	
}