$(document).ready(function(){

  // colorbox
  $('a[rel^=lightbox]').colorbox({maxWidth:'1024',maxHeight:'800'});


  // cluetip
  $('#action-products .product h4 a').cluetip({
    local:true,
    clickThrough:true,
    tracking:true,
    positionBy:'mouse',
    topOffset:20,
    leftOffset:-104,
    width:208,
    dropShadowSteps:4
  });


  $('#container-products .product .imgwrap a').cluetip({
    cluetipClass:'prod',
    width:420,
    dropShadowSteps:6,
    clickThrough:true,    
    showTitle:false,
    tracking:true,
    positionBy:'mouse',
    fx: {             
      open:'fadeIn',
      openSpeed:150
    }
  });

  // scroll to contact form
  $('#contact-scroll').click(function(){
    if (!/Opera/.test (navigator.userAgent)) { // v opere je animovany scroll nejako rozbity, zakazat
      $('html, body').animate({scrollTop: $('#contact-form').offset().top}, 1000);
      return false;      
    }
  });

  // clear data in contact form

  $('#form-contact-form #name').focus(function() {
    if ($(this).val() == 'Vaše meno') {
      $(this).val('');
    }
  });
  $('#form-contact-form #phone').focus(function() {
    if ($(this).val() == 'Telefónne číslo') {
      $(this).val('');
    }
  });
  $('#form-contact-form #email').focus(function() {
    if ($(this).val() == 'E-mailová adresa') {
      $(this).val('');
    }
  });

});


