

var date = new Date()
  	var hour = date.getHours()
	var minute = date.getMinutes()
	var timeString = hour + "." + minute
	var time = parseFloat(timeString)

var redirects =
{ 
	BryantPark: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=BryantPark",
		
	FlatIron: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=FlatIron",
	Tribeca: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=Tribeca",
	WestChelsea: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=WestChelsea",
	Village: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=Village",
	FifthAvenue: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=FifthAvenue",
	MurrayHill: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=MurrayHill",
	ParkAvenue: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=ParkAvenue",
	RockCenter: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=RockCenter",
	SoHo: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=SoHo",
	WestfieldCentre: "http://www.wichcraftnyc.com/dinner/interstitial.php?store=WestfieldCentre",
	Dinner: "http://wcdin.e-touch.com",
	
    invalid: "select.html" 
} 

function checkStore(form){
	
	//alert("We are currently experiencing technical difficulties with our online ordering system.To place an order for delivery or pickup, please call 212-780-0577 x 2.")
	
	var storeInput = document.form.storeInput.value;
	var redirect = redirects.invalid;

	if (storeInput=="BryantPark")
	{
		redirect = redirects.BryantPark;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="FifthAvenue")
	{
		redirect = redirects.FifthAvenue;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="FlatIron")
	{
		if (time < 16.3) {
			redirect = redirects.FlatIron;
			top.document.location.href = redirect;
			return false;
		}
		else if (time >= 16.3) {
			redirect = redirects.Dinner;
			top.document.location.href = redirect;
			return false;
		}
	}
	else if (storeInput=="MurrayHill")
	{
		redirect = redirects.MurrayHill;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="Tribeca")
	{
		redirect = redirects.Tribeca;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="Village")
	{
		redirect = redirects.Village;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="WestChelsea")
	{
		redirect = redirects.WestChelsea;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="ParkAvenue")
	{
		redirect = redirects.ParkAvenue;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="RockCenter")
	{
		redirect = redirects.RockCenter;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="SoHo")
	{
		redirect = redirects.SoHo;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="Westfield")
	{
		redirect = redirects.WestfieldCentre;
		top.document.location.href = redirect;
		return false;
	}
	/* else
	{
		document.location.href = "http://wc555.e-touch.com/";
	} */
}