$(document).ready(function() {
	/* Intro */
	$("#intro-logo").fadeIn(4000, function () {
        $("#intro-text").fadeIn(4000, function() {
			location.href = 'index.php?s=m_content&id=1';
		});
      });

  /* Fancybox */
	$("a[rel=fb]").fancybox();

	/* Sprachauswahl */
	$('#languageSelect').customSelect();
	
	/* Datepicker */
	$(".datepicker").datepicker({ 
	    showOn: "button", 
	    buttonImage: "components/datepicker/datepicker.png", 
	    buttonImageOnly: true 
	}).addClass("embed");
	
	$('#art').change( function() {
		if( $( this ).val() == ' 0 ' )
			$('#show-betrag').show();
		else
			$('#show-betrag').hide();
	});
});


