$(document).ready(function(){
			$("a[rel*='prettyPhoto']").prettyPhoto({hideflash: true});
			$("a.animacja").prettyPhoto({hideflash: true});
		});


function outerlinks(){
 var a = document.getElementsByTagName('a');
 for(var i=0; i<a.length; i++){
  if(a[i].className=='outer'){
   a[i].onclick=function(){window.open(this.href);return false;}
  }
 }
}

window.onload=function(){outerlinks();}
