$(document).ready(function(){
	var count = 0;

	if($("a[href*=www.hotellimaailma.fi]") != null){
		count++;
		
		$("a[href*=www.hotellimaailma.fi]").click(function(){
			var href = this.href;	
		
			if(href.indexOf("window.open") > -1){
				var hrefParts = this.href.split("'");
				if(hrefParts.length > 1){
					href = hrefParts[1];
				}
			}
			
			pageTracker._link(href);
			return false;
		});
	}
	
	if($("a[href*=www.hotelworld.fi]") != null){
		count++;
		
		$("a[href*=www.hotelworld.fi]").click(function(){
			var href = this.href;	
		
			if(href.indexOf("window.open") > -1){
				var hrefParts = this.href.split("'");
				if(hrefParts.length > 1){
					href = hrefParts[1];
				}
			}
			
			pageTracker._link(href);
			return false;
		});
	}
});
