$(document).ready(function() {

  $('ul.gallery li').hover(function() { 
          var thumbOver = $(this).find('img').attr('src'); //Get image url and assign it to 'thumbOver'
          //Set a background image(thumbOver) on the &lt;a&gt; tag 
          $(this).find('a.thumb').css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
          //Fade the image to 0 
          $(this).find('span').stop().fadeTo('normal', 0 , function() {
                  $(this).hide() //Hide the image after fade
          }); 
  } , function() { //on hover out...
          //Fade the image to 1 
          $(this).find('span').stop().fadeTo('normal', 1).show();
  });

  $("a[rel=fotogaleria]").fancybox({
                  'transitionIn'		: 'none',
                  'transitionOut'		: 'none',
                  'titlePosition' 	: 'inside',
                  'padding': 0,
                  'margin': 0,
                  'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
                    return '<span id="fancybox-title-over">' + (title.length ? title : '') + '<br/><span style="font-size:11px;float:right;">(use keypad arrows or mouse wheel to cycle images)</span></span>';
          }
  });
  
  $('.e-m-a-i-l').html('<a href="ma'+'il'+'to:'+'info'+'@'+'onli'+'nedata'+'baz'+'y.'+'s'+'k'+'">'+'info'+'@'+'onli'+'nedata'+'baz'+'y.'+'s'+'k'+'</a>');
  
  $('.s-n-a-i-l-m-a-i-l').html('<br/>&nbsp;&nbsp;&nbsp;&nbsp;WAI s.r.o<br/>&nbsp;&nbsp;&nbsp;&nbsp;Sladkovicova 43<br/>&nbsp;&nbsp;&nbsp;&nbsp;921 01 Piestany<br/>&nbsp;&nbsp;&nbsp;&nbsp;Slovak Republic, European Union');
  
});

// $(document).ready(function() {
  // $('#sharing').Sharing({
    // 'text': '',
    // 'image_dir': _IMG_ROOT_BASE+'/sharing/',
    // 'title': 'Project Management with Manitoo'
  // });
// });

