$(document).ready(function() {
	$('.hover').hover(function () {
			bild = '/images/' + $(this).attr('id') + '_aktiv.gif';
			$(this).attr('src',bild);
		},
		function () {
			bild = '/images/' + $(this).attr('id') + '.gif';
			$(this).attr('src',bild);
		}
	);
	$('.hoverjpg').hover(function () {
		bild = '/images/' + $(this).attr('id') + '_aktiv.jpg';
		$(this).attr('src',bild);
	},
		function () {
			bild = '/images/' + $(this).attr('id') + '.jpg';
			$(this).attr('src',bild);
		}
	);
	$('#klappentext').css("display","none");
	$('.backwardb').click(function() {
		$('#klappentext').hide();
		$('#einleitungstext').show();
		$('#pfeillinks').show();
		$('#pfeilrechts').show();
		
	});
	$('.forwardb').click(function() {
		$('#klappentext').show();
		$('#einleitungstext').hide();
		$('#pfeillinks').hide();
		$('#pfeilrechts').hide();
	});

	$("#kontakt_abschicken").click(function() {
		var fault=0;
		$(".required").each(function(){
			if($(this).val()==''){
				fault=1;
			}
		});
		
		if(fault==1){
			$(".error").html('Bitte f&uuml;llen Sie alle Felder aus die mit einem * markiert sind.');
		}else{
			longget ='';
			$(".inputbasic").each(function(){
				longget = longget + '&' + $(this).attr('name') + '=' + $(this).val();
			});
			$.get("/kontakt/mail/?" + longget, function(data){
				if(data=="ok\n"){
					$(".error").html('Ihre E-Mail wurde an uns versendet.');
					$(".inputbasic").each(function(){
						$(this).val('');
					});
					$("#rechts").html('&nbsp;');
				}else{
					$(".error").html('Bitte f&uuml;llen Sie alle Felder aus die mit einem * markiert sind.');
				}
			});


		}
	});
	$('#slideshow').cycle({timeout:4000,fx: 'fade'});
});

