function init() {
	//initFlash();
	startTime();
	blinkItem();
	if (typeof setMainHeight == 'function') {
		setMainHeight();
	}
}

function initFlash() {
	var logo = new SWFObject("images/site/marca6.swf?misc="+fecha_mod_swf, "SWFLogo", "300", "56", "8", "#FFFFFF");
	logo.write("logo");
	
	/*var address = new SWFObject("images/site/address.swf", "SWFAddress", "459", "26", "8", "#FFFFFF");
	address.addParam("wmode", "transparent");
	address.write("address");
	
	var contactTitle = new SWFObject("images/site/contacto-header.swf", "SWFContactTitle", "115", "20", "8", "#FFFFFF");
	contactTitle.addParam("wmode", "transparent");
	contactTitle.write("contactTitle");

	var contactMail = new SWFObject("images/site/mail.swf", "SWFContactMail", "55", "35", "8", "#FFFFFF");
	contactMail.addParam("wmode", "transparent");
	contactMail.write("contactMail");

	var contactMsn = new SWFObject("images/site/msn.swf", "SWFContactMsn", "55", "35", "8", "#FFFFFF");
	contactMsn.addParam("wmode", "transparent");
	contactMsn.write("contactMsn");
*/	
	if (document.getElementById('map')) {
		var map = new SWFObject	("images/site/map.swf", "SWFMap", "548", "351", "8", "#FFFFFF");
		map.write('map');
	}
}

function startTime() {
	var days = new Array("Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado");
	var months = new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
	
	var today = new Date();
	var d = today.getDay();
	var f = today.getDate();
	var n = today.getMonth();
	var y = today.getFullYear();
	var h = today.getHours();
	var m = today.getMinutes();
	var s = today.getSeconds();
	// add a zero in front of numbers<10
	m = checkTime(m);
	s = checkTime(s);
	document.getElementById('clock').innerHTML = f+" de "+months[n]+" de "+y;
	t = setTimeout('startTime()',500);
}

function checkTime(i) {
	if (i<10) {
		i="0" + i
	}
	return i
}

function gotoTab(ndx) {
	var tabs = document.getElementById('tabs').getElementsByTagName('a');
	var pages = Array( document.getElementById('tabSpecs'),
				document.getElementById('tabDesc'), 
				document.getElementById('tabMulti'),
				document.getElementById('tabComments') );
				
	for (var n=0; n < tabs.length; n++) {
		tabs.item(n).className = '';
		pages[n].style.display = 'none';
	}
	tabs.item(ndx).className = 'sel';
	pages[ndx].style.display = 'block';
}

function blinkItem() {
	list = document.getElementById('topMenu');
	items = list.getElementsByTagName('li');
	for (i=0; i<items.length; i++) {
		if (items[i].className == 'blink') {
			link = items[i].getElementsByTagName('a').item(0);
			if (link.className == "") {
				link.className = "blink";
			}
			else {
				link.className = "";
			}
		}
	}
	setTimeout(blinkItem, 1000);
}

