	$(document).ready(function(){
		$("a").click(function(){
			if ($(this).attr("target") == "_blank") {				
				var Ergebnis = "";
				var Suche = /^(https?\:\/\/([a-z]+\.)?bwin\.com)(\/(.*))?$/;				
				Ergebnis = Suche.exec($(this).attr("href"));				
				// Wenn true -> bwin.com related
				if (Ergebnis) {
					// Wenn true -> bwin.com deeplink
					if (Ergebnis[4] && Ergebnis[4].length>0) {
						if (Ergebnis[4].match(/\?/)) { window.open($(this).attr("href") + "&RefererID=N7JG9FN8PF2ZNWL2G36&zoneid=41766"); }
						else { window.open($(this).attr("href") + "?RefererID=N7JG9FN8PF2ZNWL2G36&zoneid=41766"); }
					}
					// -> bwin.com homepage
					else { window.open("https://adserver.itsfogo.com/click.aspx?zoneid=41766"); }
				}
				// -> kein bwin.com 
				else { window.open($(this).attr("href")); }				
				//window.open(go2url);
	   			return false;
			}
		});
	});
