// JavaScript Document

function pauschalen_open()
{
	jQuery('#pauschalen_c').animate({height: 170}, 'fast');
	jQuery('#pauschalen_c').addClass('opened');
	jQuery('#btnarrow').addClass('opened');
}

function pauschalen_close()
{
	jQuery('#pauschalen_c').animate({height: 0}, 'fast');
	jQuery('#pauschalen_c').removeClass('opened');
	jQuery('#btnarrow').removeClass('opened');
}

function pauschalen_togle()
{
	if(jQuery('#pauschalen_c').css('height') == '0px')
	{
		pauschalen_open();
	}
	else
	{
		pauschalen_close();
	}
}

function anim_start()
{
	setTimeout('pauschalen_open()', 2000);
}
