$(document).ready( function () {
  // externi odkazy
  $("a[@href^=http]").each(function () {
    if (this.href.indexOf(location.hostname) == -1) {
      $(this).click(function () {
        window.open(this.href);
        return false;
      });
    }
  });
  
  //cycle plugin - header
  $('#slide').cycle({
    fx:     'cover', /*scrollRight, fade*/
    speed: 2000, 
    easing: 'easeOutBack', /*easeInOutCubic*/
    delay:  -1000, 
    // duration of slide
    timeout: 15000
  });
  
  // cenik
  function countPrice() {
    var celkem = 0;
    $('input:checked').each(function (i) {
      var cena = parseInt($(this).val());
      celkem = cena + celkem;
    });
    $('#cena').text(celkem + ' Kč');
  }
  //countPrice();
  $(':checkbox').click(countPrice);


  
});

// lightbox
$(function() {
  $('a[@rel*=lightbox]').lightBox({
	overlayBgColor: '#000',
	overlayOpacity: 0.75,
	imageLoading: 'cms/jquery/images/loading.gif',
	imageBtnClose: 'cms/jquery/images/close.gif',
	imageBtnPrev: 'cms/jquery/images/prev.gif',
	imageBtnNext: 'cms/jquery/images/next.gif',
	containerResizeSpeed: 350,
	txtImage: 'Fotografie',
	txtOf: 'z'
   });
});
