var slideDown = false;
var slideObj = null;
var animating = false;

$(document).ready(function(){
 
  // rotate on the mowe
	$('#onthemove ul').innerfade({
		speed: 1000,
		timeout: 4000,
		type: 'random',
		containerheight: '185px'
	});

  // fancybox
	$("a.fancy").fancybox();

  // Tooltip 
	$("a#dobirka").easyTooltip({
		useElement: "itemOne"				   
	});
	$("a#hotovost").easyTooltip({
		useElement: "itemTwo"				   
	});
	$("a#prevod").easyTooltip({
		useElement: "itemThree"				   
	});
	$("a#zahranici").easyTooltip({
		useElement: "itemFour"				   
	});
	$("a#dobirka_sk").easyTooltip({
		useElement: "itemFive"				   
	});

  // externi odkazy
  $('a.ext').filter(function() {
    return this.hostname && this.hostname !== location.hostname;
  }).addClass('external')
  .click(function() {
    window.open(this.href);
    return false;
  });	


  $('#photoShow').click(function() {
    if($(this).is(':checked')) {
      $('#videoForm').hide('normal');
      $('#photoForm').show('fast');
    }
  });

  $('#videoShow').click(function() {
    if($(this).is(':checked')) {
      $('#photoForm').hide('normal');
      $('#videoForm').show('fast');
    }
  });
  
});
