var preventSplash = false;

$(function(){
	$(window).bind('beforeunload', function(){
		if (!preventSplash) {
			window.location.href = "bonus.html";
			preventSplash = true;
			
			return "_______________      STAI PUTIN!!     _______________\n\n ...   Inainte de a pleca, iti ofer GRATUIT doua carti electronice   ...\n\napasa CANCEL - RENUNTA - STAY ON THIS PAGE pentru a primi  cadoul meu.";
		}
	});
	
	function redirectWithoutSplash(location) {
		preventSplash = true;
		window.location.href = location;
	}
	
	$("a:not(.nyroModal,.rasfoieste-splash,.rasfoieste)").click(function(){
		redirectWithoutSplash($(this).attr("href"));
		
	  	return true;
	});
});
