$(document).ready(function(){
  
		
	// Add pdf icons to pdf links
	$("a[href$='.pdf']").addClass("pdf");
	 
	// Add txt icons to document links (doc, rtf, txt)
// 	$("a[href$='.doc'], a[href$='.txt'], a[href$='.rft']").addClass("txt");
// 
// 	// Add zip icons to Zip file links (zip, rar)
// 	$("a[href$='.zip'], a[href$='.rar']").addClass("zip"); 
// 	
// 	// Add email icons to email links
// 	$("a[href^='mailto:']").addClass("email");
// 
// 	//Add external link icon to external links - 
// 	$('a').filter(function() {
// 		//Compare the anchor tag's host name with location's host name
// 	    return this.hostname && this.hostname !== location.hostname;
// 	  }).addClass("external");
	
  
  $("#vypis_bytu tr").hover(function(){
    if ($(this).hasClass("even") || $(this).hasClass("odd"))
      $(this).children().addClass("active");
  }, function(){
    $(this).children().removeClass("active");
  });
  
  
  $("#vypis_bytu tr").click(function(){
    if (typeof($(this).children("td:first").children("a:first").attr("href")) != 'undefined')
      location.href = $(this).children("td:first").children("a:first").attr("href");
  });
  
  //alert('wtf');
});


$(function() {
	$('a.lightbox').lightBox({
   fixedNavigation:true,
   imageLoading: 'http://www.geosan-development.cz/js/lightbox-jquery/images/lightbox-ico-loading.gif',
   imageBtnClose: 'http://www.geosan-development.cz/js/lightbox-jquery/images/lightbox-btn-close.gif',
   imageBtnPrev: 'http://www.geosan-development.cz/js/lightbox-jquery/images/lightbox-btn-prev.gif',
   imageBtnNext: 'http://www.geosan-development.cz/js/lightbox-jquery/images/lightbox-btn-next.gif'
  });
  	$('a.lightbox_foto-tydne').lightBox({
   fixedNavigation:true,
   imageLoading: 'http://www.geosan-development.cz/js/lightbox-jquery/images/lightbox-ico-loading.gif',
   imageBtnClose: 'http://www.geosan-development.cz/js/lightbox-jquery/images/lightbox-btn-close.gif',
   imageBtnPrev: 'http://www.geosan-development.cz/js/lightbox-jquery/images/lightbox-btn-prev.gif',
   imageBtnNext: 'http://www.geosan-development.cz/js/lightbox-jquery/images/lightbox-btn-next.gif'
  });
});