$(document).ready(function(){

// PRETTY PHOTO INIT
$("a[rel^='prettyPhoto']").prettyPhoto();

// TOP SEARCH 
$('#s').focus(function() {
		$(this).animate({width: "215"}, 300 );	
		$(this).val('')
});

$('#s').blur(function() {
		$(this).animate({width: "100"}, 300 );
});

// QUICK CONTACT

$('#quickFirstName').val('Vorname');
$('#quickLastName').val('Name');
$('#quickEmail').val('Email');
$('#quickGeburtsdatum').val('Geburtsdatum');


$('#quickFirstName').focus(function() {
		$(this).val('');	
});
$('#quickLastName').focus(function() {
		$(this).val('');	
});

$('#quickEmail').focus(function() {
		$(this).val('');	
});

$('#quickGeburtsdatum').focus(function() {
		$(this).val('');	
});

//SHARE LINKS
$('#shareLinks a.share').click(function() {
		if ($("#shareLinks #icons").is(":hidden")) {
		$('#shareLinks').animate({width: "625"}, 500 );
		$('#shareLinks #icons').fadeIn();
		$(this).text('[-] Share & Bookmark');
		return false;
		}else {
		$('#shareLinks').animate({width: "130"}, 500 );
		$('#shareLinks #icons').fadeOut();
		$(this).text('[+] Share & Bookmark');
		return false;	
		}
});

});
<!-- end document ready -->

<!-- PrettyPhoto init -->


