heroheman
10/6/2011 - 2:57 PM

jQuery: Height Toggle

jQuery: Height Toggle

	$('#toggleReiseziele').click(function(){
		if($(this).hasClass('toggleUp')){
			$('#footer').animate({height:'500'},'slow');
		}else{
			$('#footer').animate({height:'200'},'slow');
		}
		$('#toggleReiseziele').toggleClass('toggleUp');
	});