
	var childPath = "http://tbweb01.labb.lan";
  	var co = { path : '/', domain  : 'labb.lan' };
	var cashedHeight, cashedTab;
	
	$.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.
		  $(".Iframe").css("height", (cashedHeight = h + 40) + "px");
		}
		if (!isNaN( t ) && t > 0 && t !== cashedTab) {
			// Tab has changed, 3 search = 1, 4 my = 5
			t =  (t == 3 ? 1 : ( t == 4 ? 5 : null));
			if (t != null) {
				cashedTab = t;
				$("#MainNavigation a.Active").removeClass("Active");
				$("#MainNavigation li a").eq(t).addClass("Active");
			}
		}
	}, childPath);
	
	$(document).ready(function(){
		//Redirect to mina sidor
		var baseUrl = "http://tbweb01.labb.lan/index.php"
		var url = window.top.location.href;
		if(url.indexOf("?") > 0) {
			url = baseUrl + url.substr(url.indexOf("?"), url.length);
			$(".Iframe").attr("src", url);
		}
	});