// JavaScript Document
function check_redirects(){
	$('a').each(function(index, element) {
		if(this.href == "wohnungssuche"){
			var redirect = this.href;
			
			if(redirect.search(/wgli.de.+/) == -1 && redirect != "" && redirect.search(/mailto:.+/) == -1){
				this.href = 'http://www.wgli.de/templates/wgli_redirect.php?redirect=http://wbgd.immosolve.eu/immosolve_presentation/pub/modern/1111000/1391/immo.jsp?skipLocation=true';//+redirect;
				this.target = '_blank';
			}
		}
	});
}
