$(document).ready(function () {	
	
	
	// The dropdown menu effect.
	$('#nav li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(200);

		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(200);			
		}
	);
	
	
	// The highlight/hover function for the sidebar boxes.
	$('.sidebar-box').hover(function() {
	  $(this).addClass('pretty-hover');
	}, function() {
	  $(this).removeClass('pretty-hover');
	});
	
	
	// The popup box for the link Impressum in the footer.
	$('.impressum').click(function (e) {
		$('#impressum-box').modal();

		return false;
	});
	
	
	$(".btn-slide").click(function(){
		$("#panel").slideToggle("fast");
		$(this).toggleClass("active"); return false;
	});
	
   
    $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });

});
