var firstdiv = document.getElementsByTagName('DIV');
firstdiv = firstdiv[0];
var style = 'none';
if (firstdiv.currentStyle) {
	style = firstdiv.currentStyle['backgroundImage'];
} else if (window.getComputedStyle) {
	style = window.getComputedStyle(firstdiv,null).getPropertyValue('background-image')		
}
if(style == 'none') {
	var headertextcolor = document.getElementById('headertextcolor');
	if (headertextcolor && headertextcolor.className == "whitetext") {
		document.getElementById('headercountry').style.color = '#FFFFFF';
	} else {
		document.getElementById('headercountry').style.color = '#000000';
	}	
}
