/* IE6nomore
------------------------------------------------------------------------------------------------ */

$.IE6nomore = function() {

    if(!$('#ie6nomore').length)
        return;

    $('#ie6nomore').css({
        'left'      : 0,
        'top'       : 0,
        'bottom'    : 0,
        'right'     : 0,
        'position'  : 'absolute',
        'z-index'   : 9999
    });

};

/* Spam protection
------------------------------------------------------------------------------------------------ */

function getAdr(prefix, postfix, text) {
    document.write('<a href="mailto:' + prefix + '@' + postfix + '">' + (text ? text.replace(/&quot;/g, '"').replace(/%EMAIL%/, prefix + '@' + postfix) : prefix + '@' + postfix) + '</a>');
}

/* Cross Fade Images in Header */
function fadeHeaders(){
	$('#sf_1').delay(3000).fadeOut(2000).delay(3000).fadeIn(2000);
}


/* DOM
------------------------------------------------------------------------------------------------ */

$(document).ready(function() {

    // IE6nomore
    $.IE6nomore();
    
    //wrap first level <a>s in menu with span for css styling 
    $('#nav > li > a').wrap('<span>');

    // Popups
    $(function() {
        $('.online_popup').popup();
    });

    $('.figure_popup').popup({
        'content'    : 'image',
        'show_title' : false
    });

	// Galerie für das Haus
    $('#gallery').bxSlider({
		pager: true
    });
    
    if($('.startpage')){
    	fadeHeaders();
    	setInterval('fadeHeaders()', 10000);
    }

});

