﻿$(document).ready(function() {
    $("#header-nav a[class!=selected]").hover(function() {
        //$(this).slideUp("fast");
    //$(this).animate({ backgroundColor: "#dcdcdc", color: "white" }, 500);


        $(this).addClass("hover");
        //$(this).slideDown("fast");

    }, function() {
    //$(this).animate({ backgroundColor: "white", color: "#666666" }, 500);
    $(this).removeClass("hover");

    });
    //var anzahl = $li.length;
    //alert(anzahl);

});



function FensterOeffnen(Adresse) {
    MeinFenster = window.open(Adresse, "Zweitfenster", "width=800,height=600,left=100,top=200");
    MeinFenster.focus();
}


