$(document).ready(function(){

	// Setup HoverAccordion for Example 2 with some custom options
	$('#AccMenue').hoverAccordion({
		activateitem: '0',
		speed: 'fast',
		keepheight:'true'
	});
	$('#AccMenue').children('li:first').addClass('firstitem');
	$('#AccMenue').children('li:last').addClass('lastitem');
	
	
	// Slideshow Header
	$('#Fadein').cycle({ 
    fx:      'fade', 
    timeout: 9000,  
	speed:  2500 
	});
	
	// tabmenue
	$(".tabs").accessibleTabs({
		tabhead:'h2',
		fx:"fadeIn"
	});
	
	//clear inputfields
	//$('#Login input#user').clearValOnFocus();


});

var tx_kiwiaccordion_exclusive =0;var tx_kiwiaccordion_effect = "slide";

// execute your scripts when the DOM is ready. this is a good habit 
$(function() { 
 
    // expose the form when it's clicked or cursor is focused 
    $("form.expose").bind("click", function() { 
 
        $(this).expose({ 
 
            // custom mask settings with CSS 
            maskId: 'mask', 
 
            // when exposing is done, change form's background color 
            onLoad: function() { 
                this.getExposed().css({backgroundColor: '#E7E7E7'}); 
            }, 
 
            // when "unexposed", return to original background color 
            onClose: function() { 
                this.getExposed().css({backgroundColor: null}); 
            }, 
 
            api: true 
 
        }).load(); 
    }); 
});
