$(function(){
    //login sliding box
	$("#header div.loginIn").click(function(){
        $('#startRegisterForm').find('.errors').fadeOut();
        if($(this).parent().find("div.loginOut").is(':visible')){
			$(this).parent().find("div.loginOut").slideUp();
			$("#header .loginArrowDown").removeClass('loginArrowUp');	
		} else {
			$(this).parent().find("div.loginOut").slideDown();
			$("#header .loginArrowDown").addClass('loginArrowUp');
		}
	});
	
	$('#loginUsername, #loginPassword').click(function(){
		$('#loginError').fadeOut();
	});
	
	//seo fadingboxen
	$("#wrapper div.indexInfoLeft").parent().parent().parent().find('.seoBox').hide();//Alle Seo Boxen ausblenden
	$("#wrapper div.indexInfoLeft").parent().parent().parent().find('.seoBox_pros').show();//Erste SeoBox ()Vorteile einblenden
	$("#wrapper div.indexInfoLeft #pros").addClass('active');//ersten Link auf active setzen
	
	$('#wrapper div.indexInfoLeft div.BoxBottomNavigation li').click(function() {
		$('#wrapper div.indexInfoLeft div.BoxBottomNavigation li').removeClass('active');
		$(this).addClass('active');
		$(this).parent().parent().parent().find('.seoBox').hide();
		$(this).parent().parent().parent().find('.seoBox_' + $(this).attr('id')).show();
	});

	// PopUps
	var linki = document.getElementsByTagName('a');
    var nlinki = linki.length;
    for(i=0; i < nlinki; i++){
        if (linki[i].className == 'popup') {
        	linki[i].onclick = openWindow;
        }
    }
});
function openWindow() {
	newWindow = window.open(this,'','height=600,width=850,scrollbars=1');
    if (newWindow.focus)
    {
        newWindow.focus();
    }
    return false;
}
//Popups ENDE
