$(document).ready(function () {
  //promoted
  $('#topStories').promoted({
    autoStart: 4000,
    containerClick: false,
    slidespeed: 500,
    fadespeed: 100,
    restart: 4000
  });
  //menu
	$('#menu li').prepend('<div class="hover"></div>');
	$('#menu li:first-child').addClass('first');
	$('#menu li:last-child').addClass('last');
	$('#menu ul').prepend('<div id="first"></div><div id="last"></div>');
	$('#menu li').hover(	
		function() {
	    $(this).children('div').css("display","none");
		  if( $(this).hasClass('first') ){
       $('#menu #first').fadeIn(300);
      }
			$(this).children('div').fadeIn(300);	
    }, 
		function() {
		  if($(this).hasClass('first')){
       $('#menu #first').fadeOut(200);
      }
			$(this).children('div').fadeOut(200);
	});
	//inzeraty fullbox
	$('#idxInzeraty .inzerat').click(function() {
   window.location.href=($(this).children('a')[0].href);
  });
  //gotop
  $('#gotop').click(function() {
   $( 'html, body' ).animate( { scrollTop: 0 }, 'slow' );
   return false;
  });
});
