$(document).ready(function() {
	
    $("a.philo").click(function() {
		
		$('#slider').animate({
			height:"520px"
		}, 800, function(){});		
		
		$('.headbox').fadeOut("fast");
	
		$('#philo').delay(1010).fadeIn("slow");
	});
	
	
	 $("a.start").click(function() {
		 
		$('#philo').fadeOut("fast");
		
		$('#slider').animate({
			height:"345px"
		}, 800, function(){});		
		
		$('.headbox').delay(1010).fadeIn("slow");
	  
	 });
	 
	 
});
