$(document).ready(function(){
    $('.outerLink').each(function(index){
		this.target='_blank';
	})	

	$('.menu li a') 
	   .css({backgroundPosition: '0 0'}) // workaround for FF 2.0 bug 
	   .mouseover(function(){ 
		   $(this)
				.animate({backgroundPosition: '(6px 0px)'}) 
				.animate({backgroundPosition: '(0px 0px)'}); 
	   });
       
   $("#linkJatekszabaly").click(function(event){
       event.preventDefault();
       window.open ($(this).attr("href"),"jatekszabaly","status=0,toolbar=0,menubar=0,width=836,scrollbars=1"); 
   });
   $(".linkNyertesLista").click(function(event){
       event.preventDefault();
       window.open ($(this).attr("href"),"nyertesek_listaja","status=0,toolbar=0,menubar=0,width=836,scrollbars=1"); 
   });
   if ( $("div.nyeremenyjatekPage").length!= 0 ) {
       $("div.pFooter").addClass("nyeremenyjatekPage")
   }
});

