
	var childPath = "http://marknad.tunabyggen.se";
  	var co = { path : '/', domain  : 'tunabyggen.se' };
	var cashedHeight;
	
	$.cookie("xss_parent_domain", document.location.href, co);
	
	$.receiveMessage(function(e){
		var h = Number( e.data.replace(/.*height=(\d+)&.*/, '$1' ) );
		var t = Number( e.data.replace(/.*tab=(\d+)(?:&|$)/, '$1' ) );
		if (!isNaN( h ) && h > 0 && h !== cashedHeight) {
		  // Height has changed, update the iframe.
		  $(".IframeWider").css("height", (cashedHeight = h + 40) + "px");
		}
		if (!isNaN( t ) && t > 0) {
			// Tab has changed
			t =  (t == 3 ? 'Ledigt' : ( t == 4 ? 'Mina-sidor' : null));
			if (t != null) {
				$("#MainNavigation a.Active").removeClass("Active");
				$("#MainNavigation a[href*='" + t + "']").addClass("Active");
			}
		}
	}, childPath);
	
	$(document).ready(function(){
		//Redirect to mina sidor
		var baseUrl = childPath + "/index.php"
		var url = window.top.location.href;
		if(url.indexOf("?") > 0) {
			url = baseUrl + url.substr(url.indexOf("?"), url.length);
			$(".IframeWider").attr("src", url);
		}
	});
