

	//----------------------------------------------------------------------------
	//-- JS for jump menu
	//----------------------------------------------------------------------------
	function jump_to(site_code) {
		switch (site_code) {
			case "ES":	window.location = "http://www.dynamiclear.es";		break;
			case "IT":	window.location = "http://www.dynamiclear.it";		break;
			case "JP":	window.location = "http://www.dynamiclear.jp";		break;
			case "SE":	window.location = "http://www.dynamiclear.se";		break;
			case "UK":	window.location = "http://www.dynamiclear.co.uk";	break;
			case "US":	window.location = "http://www.dynamiclear.com";		break;
			}
		}

	//----------------------------------------------------------------------------
	//-- JS for date
	//----------------------------------------------------------------------------
	var now = new Date();

	var months = new Array("Enero","Febrero","Marcha","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");

	today = now.getDate() + " " + months[now.getMonth()] + ", " + (fourdigits(now.getYear()));

	function fourdigits(number)	{
		return (number < 1000) ? number + 1900 : number;
		}

	function print_date() {
		document.write('<span class="head">' + today + '</span>');
		}