jQuery(document).ready(function($) {
   $('#odkryt').click(function(){
    $('#kontaktni-formular form').slideToggle();
    return false;
   });
   
    $(".reference a").tooltip({
      delay: 0,
      bodyHandler: function() { 
        return $($(this).next('.detail-projektu:first')).html(); 
      },
      showURL: false
    });
   
 
 $('.reference a img').hover(function(){
    $(this).animate({
        top: '-=5px'
    }, 200);
}, function(){  
    $(this).animate({
        top: '+=5px'
    }, 200);
});


$('#nahoru').click(function(){
	$('html,body').animate({scrollTop: $("#main").offset().top},'fast');
});

 $('#odkryt-navigaci').click(function(){
    $('#main-menu').slideToggle();
    return false;
   });
 
 
jQuery(function($){
	$('ul#items').easyPaginate({
	step:6
	});	
});  



$(".vypis-sluzby").hide();
$("h3.button-sluzby").click(function(){
$(this).next(".vypis-sluzby").slideToggle("slow");
return true;
});



});
