$(document).ready(function(){

// open 'useful links' in new window
	$(function(){
			// add 'opens in new window' or 'otevře se v novém okně' info to title attribute
			$('#usefullinks a').each(function(){
				title = $(this).attr('title');
	      if ($('body.cs').length > 0) {
					title = title + " [otevře se v novém okně]";
				} else {
					title = title + " [opens in new window]";
				}
	      $(this).attr('title', title);
			});

	    $('#usefullinks a').click(function(){
	      window.open(this.href);
	      return false;
	     });
	});


// setup pager for list of tenants on 'Offices' page
// (see http://rikrikrik.com/jquery/pager/)
	if ($.fn.pager) {
		$('#tenantlists').pager('ul', {
	    navId: 'tenantsnav',
	    linkWrap: '<li></li>'
	  });
  }

// add 'print page' link via Javascript
// ('print page' link uses Javascript - if no Javascript, no link! :))
	if ($('body.webcam').length < 1 
	 && $('body.galleries').length < 1 
	 && $('body.gallery').length < 1
	 && ($('li#goback').length < 1 || ($('body.news').length > 0 || $('body.novinky').length > 0)))
	{
		if ($('body.cs').length > 0) {
			$('#nav-print').prepend('<li class="print"><a href="javascript:window.print();">Tisk</a></li>');
		} else {
			$('#nav-print').prepend('<li class="print"><a href="javascript:window.print();">Print</a></li>');
		}
	}
});

