$(document).ready(function() {
$('.sitemaplink').click(function(){
$('#sitemap').slideToggle("slow");
});
});



$(document).ready(function() {

$('.accordionButton').click(function() {
$('.accordionButton').removeClass('on');
$('.accordionContent').slideUp('normal');
if($(this).next().is(':hidden') == true) {
$(this).addClass('on');
$(this).next().slideDown('normal');
} 
		  
});

$('.accordionButton').mouseover(function() {
$(this).addClass('over');
		
}).mouseout(function() {
$(this).removeClass('over');										
});

$('.accordionContent').hide();

});

	

$(document).ready(function() {
$('a[href*=#]').bind("click", function(event) {
event.preventDefault();
var ziel = $(this).attr("href");
if ($.browser.opera) {
var target = 'html';
}else{
var target = 'html,body';
}

$(target).animate({
scrollTop: $(ziel).offset().top
}, 1000 , function (){location.hash = ziel;});

});

return false;

});







