var forwardURLs = [	["from-field-to-crisp", "/about/FieldCrisp"],
					["our-range", "/OurRange"],
					["walkers-crisps", "/OurRange/walkerscrisps"],
					["walkers-lights", "/OurRange/walkerslights"],
					["walkers-max", "/OurRange/walkersmax"],
					["walkers-extra-crunchy", "/OurRange/walkersextracrunchy"],
					["walkers-crinkles", "/OurRange/walkerscrinkles"],
					["nutritional-info", "/about/nutritional"],
					["get-in-touch", "/home/contact"],
					["terms", "/home//terms"],
					["privacy", "/home/privacy"],
					["signup", "/"],
					["404", "/"],
					["competition-closed", "/"],
					["chocolate_spuds", "/"],
					["name-that-groovy-tune", "/"],
					["win-a-country-break", "/"],
					["win-a-picnic-hamper", "/"]];

var urlHashsString = self.document.location.hash.substring(1);
var urlHashsArray = urlHashsString.split('/');

switch (urlHashsArray[urlHashsArray.length - 1])
{
	case 'for-simon':
		window.onload = makeTheTopMenuJump;
		break;
	default:
		for(var i=0; i<forwardURLs.length; ++i)
		{
			if(urlHashsArray[urlHashsArray.length - 1] == forwardURLs[i][0])
			{
				window.location = forwardURLs[i][1];
			}
		}
		break;
}

function makeTheTopMenuJump()
{
	document.getElementById('space').style.height = '150px';
	document.getElementById('topNav').style.float = 'left';
	var resettimer = window.setTimeout(reset, 200);
}

function reset()
{
	document.getElementById('space').style.height = '0px';
	document.getElementById('topNav').style.float = 'right';
}
