$(document).ready(function(){
	$('div#descr2').hide();
	$('a#datinfo').click(function(event){event.preventDefault();});
	$('a#datinfo2').click(function(event){event.preventDefault();});
	$('a#datinfo').click(function() {
			$('div#descr').hide("slow");
			$('div#descr3').animate({ height: 'hide', width: 'hide' }, "slow");
			$('div#descr2').show("slow");
		});
	$('a#datinfo2').click(function() {
			$('div#descr').show("slow");
			$('div#descr2').animate({ height: 'hide', width: 'hide' }, "slow");
			$('div#descr3').show("slow");
		});
});