// nach oben //

$(document).ready(function() {
    $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
});

// Tabs //

$(document).ready(function() { 
	$('.tabs a').click(function(){
		switch_tabs($(this));
	}); 
	switch_tabs($('.defaulttab')); 
    }); 
    function switch_tabs(obj) {
	$('.tab-content').hide();
	$('.tabs a').removeClass("selected");
	var id = obj.attr("rel"); 
	$('#'+id).fadeIn(500);
	obj.addClass("selected");
    }

// Navigation (IE6 Fix) //

$(document).ready(function() { 
	$("ul#topnav li").hover(function() {
				$(this).css({ 'background' : '#77b237'});
				$(this).find("span").show();
			} , function() {
				$(this).css({ 'background' : 'none'});
				$(this).find("span").hide();
	});
});
