function changecountry(num){
	var counow = window.document.getElementById("country"+num);
	if (counow.className=='selectcountry')
	{
	var cou1 = window.document.getElementById("country1");
	var cou2 = window.document.getElementById("country2");
	var cou3 = window.document.getElementById("country3");
	var cou4 = window.document.getElementById("country4");
	var cou5 = window.document.getElementById("country5");
	var cou6 = window.document.getElementById("country6");
	var cou7 = window.document.getElementById("country6");
	cou1.className='selectcountry';
	cou2.className='selectcountry';
	cou3.className='selectcountry';
	cou4.className='selectcountry';
	cou5.className='selectcountry';
	cou6.className='selectcountry';
	cou7.className='selectcountry';
	counow.className='selectcountryhover';
	}
	else
	{counow.className='selectcountry'}	
}