var text = document.title;
whatsonPosition = text.indexOf("What's On");
shopsPosition = text.indexOf("Shops");
joblinkPosition = text.indexOf("Joblink");
barsPosition = text.indexOf("Bars and Clubs");
helpPosition = text.indexOf("Help and Advice");
campaigningPosition = text.indexOf("Campaigning");
haveyoursayPosition = text.indexOf("Have Your Say");
volunteeringPosition = text.indexOf("Volunteering & Community");		
homepagePosition = text.indexOf("Homepage");	



function showAdverts() {

if (joblinkPosition>=0) 
{document.getElementById('adverts').style.display = 'block'; }

	else { if (whatsonPosition>=0) 
	{document.getElementById('adverts').style.display = 'block';}

		else { if (shopsPosition>=0) 
		{document.getElementById('adverts').style.display = 'block';}

			else { if (barsPosition>=0) 
			{document.getElementById('adverts').style.display = 'block';}

				else { if (helpPosition>=0) 
				{document.getElementById('adverts').style.display = 'block';}

					else { if (campaigningPosition>=0) 
					{document.getElementById('adverts').style.display = 'block';}

						else { if (volunteeringPosition>=0) 
						{document.getElementById('adverts').style.display = 'block';}

							else { if (haveyoursayPosition>=0) 
							{document.getElementById('adverts').style.display = 'block';}
							
								else { if (homepagePosition>=0) 
								{document.getElementById('adverts').style.display = 'block';}


}
}
}
}
}
}
}
}
}

