

/* This js shows or hides any div using an id and this script*/

function hidediv(id) {
	//safe function to hide an element with a specified id
		document.getElementById(id).style.display = 'none';
		window.location.href = "#header";
}
								 

function showdiv(id) {
	//safe function to hide an element with a specified id

		document.getElementById(id).style.display = 'block';


		if((id) != "aeroskills" && (id) != "animal" && (id) != "auto" && (id) != "business" && (id) != "caravan" && (id) != "careSupport" && (id) != "community" && (id) != "conservation" && (id) != "electro" && (id) != "engineering" && (id) != "entertainment" && (id) != "food" && (id) != "horticulture" && (id) != "hospitality" && (id) != "infotech" && (id) != "meat" && (id) != "processManufaturing" && (id) != "printing" && (id) != "property" && (id) != "retail" && (id) != "rural" && (id) != "sportandrec" && (id) != "tourism" && (id) != "transport" && (id) != "pharmacy" && (id) != "beauty"&& (id) != "pharmacy" && (id) != "beauty" && (id) != "furnishing" && (id) != "lab" && (id) != "tele")
		{	
		document.getElementById(id).style.backgroundColor = '#FFFFE5';
		}

		var link = "#" + id
		window.location.href = link;
		

}



function hovershow(id) {
	
	document.getElementById(id).style.visibility = 'visible';
	document.getElementById(id).style.backgroundColor = '#FF9900';

}
	
function hoverclose(id) {
	
	document.getElementById(id).style.visibility = 'hidden';
	document.getElementById(id).style.backgroundColor = '#ffffff';

}


