 // JavaScript Document
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

var id_menu = new Array();
function allclose() { for (i=0; i < id_menu.length; i++){  document.getElementById(id_menu[i]).style.display = "none"; }}
function openMenu(id){ for (i=0; i < id_menu.length; i++){  if (id != id_menu[i]){   document.getElementById(id_menu[i]).style.display = "none";  } } if (document.getElementById(id).style.display == "block"){  document.getElementById(id).style.display = "none"; }else{  document.getElementById(id).style.display = "block"; }}
 
$(".punkt").live("mousedown", function(eventObject) {
	if (eventObject.which == 1)	{ window.location = $(this).children().attr("href");}
})
$(".punkt").live("mouseover", function() {
	$(this).children().css({"color":"#C00"});
})
$(".punkt").live("mouseout", function() {
	$(this).children().css({"color":"#000"});
})

$("#img_faq").live("mouseover", function() {
	$(this).attr("src","../img/faq_on.jpg");
})

$("#img_faq").live("mouseout", function() {
	$(this).attr("src","../img/faq.jpg");
})
