var is_ie6 = (
	window.external &&
	typeof window.XMLHttpRequest == "undefined"
);

var timer = null;
var id;
var rss = 0;

$(document).ready(function() {
	checkIe6();
	bindMenu();
	getRSS();
});

function showSubmenu() {
	clearTimeout(timer);
	$(".submenu").hide();
	$("#sub"+id).show();
}

function timeHideSubmenu() {
	timer = setTimeout("hideSubmenu(\""+id+"\")", 1000);
}

function hideSubmenu() {
	clearTimeout(timer);
	if(id == "menu-home" || id == "menu-events" || id == "menu-contact" || id == "menu-conceptdevelopment") {
		$(".submenu").hide();
	} else {
		$(".submenu").fadeOut();
	}
}


function showMap() {
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.setCenter(new GLatLng(52.18482623488914, 4.424185752868652), 13);
	map.addOverlay(new GMarker(new GLatLng(52.18482623488914, 4.424185752868652)));
}
