/*+++++++++++++++++++++++++
    initialisation
+++++++++++++++++++++++++*/
$(window).ready(function(){
		
	/*+++++++++++++++++++++++++
    	toggling teasers
	+++++++++++++++++++++++++*/
	
	$('a#showPhoto').click(function(event) {
		event.preventDefault();
		$('div#content').fadeOut();
		$('a#showWebsite').fadeIn();
	});
    
	$('a#showWebsite').click(function(event) {
		event.preventDefault();
		$('div#content').fadeIn();
		$('a#showWebsite').fadeOut();
	});

	$("#filter_form").submit(function() {
		if($('#firstname').val()=='Vorname') {
			$('#firstname').val('');
		}
		if($('#lastname').val()=='Name') $('#lastname').val('');
		if($('#email').val()=='E-Mail-Adresse') $('#email').val('');
		return true;
	});
});
