
$(document).ready(function(){
	
  $('form.contactform div.html a').toggle(function(){
	  pi_ShowForm();
	  return false;
    }, function(){
      pi_HideForm();
      return false;
    }
    
  );
  
  $("#content li:last-child").addClass('last');
  show_tab($('#tabs ul:eq(0) li:eq(0) a'));
  $('#tabs ul:eq(0) li:eq(0)').addClass('active');
  $('#tabs ul a').click(function(e){
	  show_tab(this);
	  arec_cancel_event(e);
  });

  jQuery(function(){
		jQuery('#nav_main').superfish();
	});
  
  
  $('#box-right').cycle({ 
	    fx:    'fade', 
	    speed:  1000,
	    timeout:  5000
	 });

  
});


function show_tab(a){
	$('#tabs ul:eq(0) li').removeClass('active'); // all inactive
	$(a).parent().addClass('active'); // activate current tab
	  
	// hide all contents
	$('#tabs div').each(function(){
		  var id = $(this).attr('id');
		  if(id.substr(0,3) == 'tab')
            $(this).css('display','none'); 
	  });
	
	$($(a).attr('href')).css('display','block'); // show current content
	
	$($(a).attr('href')).click();	
}

function pi_ShowForm(){
  $('form.contactform div.optional').show('slow');
  $('form.contactform div.html a').text('Weniger Daten angeben? - Hier klicken');
}

function pi_HideForm(){
  $('form.contactform div.optional').hide('slow');
  $('form.contactform div.html a').text('Mehr Daten angeben? - Hier klicken');
}