$(document).ready(function() {
			

/*$('#menue').hoverAccordion();*/




$(".menue a").each(function(){
        var href = this.getAttribute('href');
        var location = new String( document.location );
		var fileN1 = location.lastIndexOf("/") + 1;
		var fileN2 = location.length;
		location = location.substring(fileN1,fileN2);
		
		if ( location == href) {
            $(this).addClass("active");
        }
    });


if ($.cookie('position')=="unten") {
	$("#navi").animate({"marginTop": "180px"}, "slow");
	$("#pfeil").addClass("unten");	
	$("#pfeil").attr("src","../images/rauf.gif");
	
}
if ($.cookie('position')=="oben") {
	$("#navi").animate({"marginTop": "0px"}, "slow");
	$("#pfeil").addClass("oben");	
	$("#pfeil").attr("src","../images/runter.gif");	
};


$("#pfeil").click(function () {
    if ($(this).hasClass("unten") ) {
	$("#navi").animate({"marginTop": "0px"}, "slow");
	$(this).removeClass("unten");
	$(this).attr("src","../images/runter.gif");
	$.cookie('position', 'oben');
	} 
	else {
	$("#navi").animate({"marginTop": "180px"}, "slow");
	$(this).addClass("unten");	
	$(this).attr("src","../images/rauf.gif");
	$.cookie('position', 'unten');
	}
});



});


