jQuery(function()
{

$('.but1').click(function()
{
$('#trainings').toggle();
});

$('.but2').click(function()
{
$('#materials').toggle();
});

$('.but3').click(function()
{
$('#gallery').toggle();
});

$('.but4').click(function()
{
$('#about').toggle();
});

$('#timer').countdown({until: +300});

});

$(function () {
	var austDay = new Date();
	austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
	$('#defaultCountdown').countdown({until: austDay});
	$('#year').text(austDay.getFullYear());
});
