///////////////////////////////////////////////////////////////////////////////////////// 
// DHTML MENU SWAP FIX 
// This script solves the no-psuedo classes for IE problem with the dhtml menu 

// Detect IE 
var isIE = (navigator.userAgent.toLowerCase().indexOf("msie") > 0) ? true : false; 

sfHover = function() { 
   if (isIE) { 
      var sfEls = document.getElementById("primaryNav").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);

function Shop() {
	self.location.href = 'http://www.girrbach-shop.de/';
}
function ShopEn() {
	alert('Coming soon.');
}

blink(1.1);

function blink(speed) 
{
if (speed) {
if (document.all)
setInterval("blink()", speed*1000)
return;
}
var blink = document.all.tags("BLINK") 
for (var i=0; i<blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : "" 
}




