// JavaScript Document

function goToSite(e)
{
	var val = $('#market').val();
	var target = {};
	
	target.en_gb 	= "http://www.casafiesta.eu/english/startpage.aspx";
	target.fr_be 	= "http://www.casafiesta.eu/belgiumfrench/startpage.aspx";
	target.nl_be 	= "http://www.casafiesta.eu/belgiumdutch/startpage.aspx";
	target.fr_fr 	= "http://www.casafiesta.eu/france/startpage.aspx";
	target.nl 		= "http://www.casafiesta.eu/dutch/startpage.aspx";
	target.it_it 	= "http://www.casafiesta.eu/italian/startpage.aspx";
	target.be 		= "http://www.casafiesta.eu/luxemburg/startpage.aspx";
	target.es_es 	= "http://www.casafiesta.eu/spanish/startpage.aspx";
	target.el_gr 	= "http://www.casafiesta.eu/greek/startpage.aspx";
	target.hu_hu 	= "http://www.casafiesta.eu/hungary/startpage.aspx";
	target.is 		= "http://www.casafiesta.eu/Iceland/startpage.aspx";
	target.au 		= "http://www.casafiesta.eu/Austria/startpage.aspx";
	target.ch 		= "http://www.casafiesta.eu/Switzerland/startpage.aspx";
	target.cz 		= "http://www.casafiesta.eu/czech-republic/startpage.aspx";
	target.mt 		= "http://www.casafiesta.eu/Malta/startpage.aspx";
	target.pt 		= "http://www.casafiesta.eu/Portugal/startpage.aspx";
	target.pl 		= "http://www.casafiesta.eu/Poland/startpage.aspx";
	target.ro 		= "http://www.casafiesta.eu/Romania/startpage.aspx";
	target.hr 		= "http://www.casafiesta.eu/Croatia/startpage.aspx";
	target.al 		= "http://www.casafiesta.eu/Albania/startpage.aspx";
	target.cy 		= "http://www.casafiesta.eu/Cyprus/startpage.aspx";
	target.sk 		= "http://www.casafiesta.eu/slovakia/startpage.aspx";
	target.de 		= "http://www.casafiesta.eu/germany/startpage.aspx";
	
	
	
	
	window.location = target[val];
}


function startSpalsh()
{	
	$('#marketSubmit').bind('click', goToSite);
	
}



$(document).ready(startSpalsh);