/*
 * JS pro webovou cast
 *
 *
 */
function hide_country_contacts()
{
    $('#contact-prague').hide();
    $('#contact-bratislava').hide();
    $('#contact-warsaw').hide();
    $('#contact-riga').hide();
}

function show_country_contact( id )
{
    hide_country_contacts();
    $('#' + id).show();
}
 
$(document).ready(function () {
	hide_country_contacts();
    //$('a[@href^="/data"] img').parent().lightBox(); // Select all links in the page
 	$('a[href$="jpg"], a[href$="jpeg"], a[href$="gif"], a[href$="png"], a[href$="JPG"], a[href$="JPEG"], a[href$="GIF"], a[href$="PNG"]').not(".nofancy").fancybox();
    
}); 
