$(document).ready(function() {
    // przypisanie zdarzenia do main menu w celu zmiany animacji fleszowej
	$('a.mainmenu').bind('mouseenter', function(){
var currentPage = window.location.pathname
if(currentPage=='/strona_glowna/en/' || currentPage=='/strona_glowna/pl/'){

		var p = this.id.search('_');
		if (p < 0)
		  return;
		  
		var id = this.id.substr(p + 1).replace('_', '-');
        
        location.hash=id;
        }
	});

   
   $('a[@rel*=lightbox]').lightBox();

	$('a.mainmenu').bind('mouseout', function(){
	if(currentPage=='/strona_glowna/en/' || currentPage=='/strona_glowna/pl/'){
		location.hash = '_';
		}
	});

   //wywolanie drukowania
	$('a.print').bind('click', function(){
		window.print();
		return false;
	});
   
	//przycisk powrotu
	$('a.back').bind('click', function(){
		history.back();
		return false;
	});
   
   //rollover logo klientow
   $('ul.clients li a').bind('click', function(){
		return false;
	});
	
	//naglowki Sifr
	$('.content h2.sifr').sifr({
	font: '/theme/js/MyriadProRegular',
		color: '#fff'
	});
	
	//naglowki Sifr
	$('.content h3.sifr').sifr({
	font: '/theme/js/MyriadProRegular',
		color: '#438aaf'
	});
	
	//naglowki Sifr
	$('#footer p.sifr').sifr({
	font: '/theme/js/MyriadProRegular',
		color: '#438aaf'
	});
   
	//tooltip
	$(".clients li a[rel=lightbox]").mouseover(function(e){
	  var title = $(this).attr("title");
	  $(this).attr("title","");
	  $('body').prepend("<div id='tooltip'></div>");
	  $('#tooltip').html(title);
	  $('#tooltip').css("left",e.pageX);
	  $('#tooltip').css("top",e.pageY);
	}).mousemove(function(e){
	  $('#tooltip').css("left",e.pageX);
	  $('#tooltip').css("top",e.pageY);
	}).mouseout(function(){
	  var title2 = $('#tooltip').html();
	  $('#tooltip').remove();
	  $(this).attr("title",title2);
	});
	
   //okno z mapka
	$('a.mapka').bind('click', function(){
      mapWindow = window.open("", 'Azt', 'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no, width=600, height=450')
      mapWindow.document.body.innerHTML='<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=pl&amp;msa=0&amp;msid=107688095830570219114.0004667ea91f6e6122084&amp;source=embed&amp;ll=53.772863,20.483322&amp;spn=0.048696,0.09613&amp;output=embed"></iframe>';
		return false;
	});
   
});