$(document).ready(function(){
    $('.content').hide();
	$('.content').slideDown(1000);
	$('.meniu a').hover(function(){
		$(this).stop().animate({ marginLeft: '10px' });
	}, function() { $(this).stop().animate({ marginLeft: '0px' }); });
	$('h1').hide().fadeIn(1000);
	$('.imagine-sus').hide().fadeIn(1000);
});