$(document).ready(function(){
  
  // #top
  $('a.up').click(function(){
    $('html, body').animate({scrollTop:0}, 'fast');
  });
  $('a.bottom').click(function(){
    $('html, body').animate({scrollBottom:0}, 'fast');
  });
  
	/* SET Z-INDEX TO ALL DIVS */
	$(function() {
		var zIndexNumber = 1000;
		$('#page div').each(function() {
			$(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});
	});

	// MENU EFECTS
	$('.categories li').hover(function(){
		$(this).find('a').addClass('hover');
		$(this).find('.submenu').stop(true, true).slideDown(500);
	}, function(){
		$(this).find('.submenu').slideUp(500, function(){
			$(this).parent().find('a').removeClass('hover');
		});
	});
	
	// PAGING WIDTH
	var staticWidth = 198;
	var pagingItemCount = $('.paging a').length - 2;
	
	$('.paging-in').css({
		width: ((pagingItemCount * 33) + staticWidth) + 'px'
	});
	
	// FANCYBOX
	$('a.fancybox').fancybox();


  // FORM DEFAULT
  $('#loginName').DefaultValue('Přihlašovací jméno:');
  $('#loginPass').DefaultValue('Přihlašovací heslo:');

  Cufon.replace('#BASKET_DIALOG a:not(.nocufon)');
  Cufon.replace('.formsectioncaption:not(.nocufon)');
});
