//
// Kilim Pirot Javascript 09.07.2007 copyright brandperfection GmbH
//




/* E-Mail */
function myMail(){
	var att="@";
	document.write('<a href="&#109;&#97;&#105;'+'&#108;&#116;&#111;&#58;&#105;&#110;&#102;&#111;'+att+'&#107;&#105;&#108;&#105;&#109;&#112;&#105;&#114;&#111;&#116;&#46;&#99;&#111;&#109;?subject=Kontakt von &#107;&#105;&#108;&#105;&#109;&#112;&#105;&#114;&#111;&#116;&#46;&#99;&#111;&#109;">&#105;&#110;&#102;&#111;'+att+	
	'&#107;&#105;&#108;&#105;&#109;&#112;&#105;&#114;&#111;&#116;&#46;&#99;&#111;&#109;</a>');
}

function brandperfection(){
	var att="@";
	document.write('<a href="&#109;&#97;&#105;'+'&#108;&#116;&#111;&#58;&#105;&#110;&#102;&#111;'+att+'&#98;&#114;&#97;&#110;&#100;&#112;&#101;&#114;&#102;&#101;&#99;&#116;&#105;&#111;&#110;&#46;&#100;&#101;?subject=Kontakt von &#107;&#105;&#108;&#105;&#109;&#112;&#105;&#114;&#111;&#116;&#46;&#99;&#111;&#109;">&#105;&#110;&#102;&#111;'+att+	
	'&#98;&#114;&#97;&#110;&#100;&#112;&#101;&#114;&#102;&#101;&#99;&#116;&#105;&#111;&#110;&#46;&#100;&#101;</a>');
}

function enable_menues_for_ie()
{
	if (document.all)
	{
        uls = document.getElementsByTagName('UL');

        for(i = 0; i < uls.length; i++)
        {
            if (uls[i].className == 'dropdown')
            {
                var lis = uls[i].getElementsByTagName('li');

                for (i = 0; i < lis.length; i++)
                {
                    if(lis[i].lastChild.tagName == 'UL')
                    {
                        lis[i].onmouseover = function() { this.lastChild.style.display = 'block'; }
                        lis[i].onmouseout = function() { this.lastChild.style.display = 'none'; }
                    }
                }
            }
        }
    }
}