sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);



jQuery(document).ready(function(){
  // ein pfad zum auslesen
  pfad = document.location.href;
  if(pfad.indexOf('/fertigteilhaeuser/wohnbau-projekte/')>=0) {
		jQuery("a[href*='unverbindlicheanfrage']").attr("href","/kommunikation-recht/Kontaktanfrage/");
	}
	jQuery('.blink').blink(100);
	jQuery('#newblog img').hide();
	maxItems = jQuery('#newblog img').size() - 1;
	showID = Math.round(Math.random()*maxItems);
	jQuery('#newblog a, #newblog img:eq('+showID+')').show();
	
  if(typeof checkCode == 'function') {
    //checkCode();
  }
  
  if(jQuery("#kontakt").size()>0 && window.location.hash=='#prospekt') {
	jQuery("#check_uid325_0").trigger("click");
  }
 
   if(jQuery("#kontakt").size()>0 && window.location.hash=='#beratung') {
	jQuery("#check_uid325_1").trigger("click");
  }
	jQuery("#randbar-top a").fancybox();
});

