//logo effect
$(document).ready(function () {
      $("#grats").fadeIn(3000);
});

function showCatalogChilds(id){ 
      if ($("#"+id).is(":hidden")) {
        $("#"+id).slideDown(800);
      } else {
        $("#"+id).slideUp(800);
      }
}

function showMapChilds(id, parent){ 
      if ($("#"+id).is(":hidden")) {
        $("#"+id).slideDown(800);
		document.getElementById(parent).className = 'minus';
      } else {
        $("#"+id).slideUp(800);
		document.getElementById(parent).className = 'plus';
      }
}

function nonSpam(){
	document.getElementById('guest_form').action = '';
}

function setAction(id, act){
	document.getElementById(id).action = act;
}
