// Hide Irrelevant Special Offer
if (document.getElementById("src_specoff"))
{
	if (location.href.search("attraction") > 0) { thisPage = "attr"; }
	else { thisPage = "accomm"; }
	
	if (location.href.search("things-to-do") > 0) { thisPage = "attr"; }
		
	specfield = document.getElementById("src_specoff");
								
	for (x = 0; x < specfield.options.length; x++)
	{
		chkVal = specfield.options[x].value;
		if (thisPage == "attr")
			{ 
				if (chkVal == 221) { specfield.remove(x); x--; };
				if (chkVal == 241) { specfield.remove(x); x--; };
			}
		else 
			{ 
				if (chkVal == 201) { specfield.remove(x); x--; };
				if (chkVal == 51) { specfield.remove(x); x--; };
				if (chkVal == 151) { specfield.remove(x); x--; };
			}								
	}
}