var currentMenuRoll = "";
var TimeoutID;

function menuRoll(label) {
	clearTimeout(TimeoutID);
	if (currentMenuRoll != label) {
		$('.menuPic').fadeOut(500);
		$(".picLabelTD").removeClass("active");
		$("#" + label).slideDown(250);
		$("#" + label + "TD").addClass("active");
	}
	currentMenuRoll = label;
}
function menuRollOut(label) {
	TimeoutID = setTimeout("menuRollOut2('"+label+"')",500);
}
function menuRollOut2(label) {
	if (currentMenuRoll == label) {
		currentMenuRoll = "";
		$("#" + label).fadeOut(500);
		$("#" + label + "TD").removeClass("active");
	}
}

function fixHeaderSpacing() {
	$("#leftWidthTarget").removeAttr("width");
	$("#rightWidthTarget").removeAttr("width");
	$("#leftWidthTarget").css({width:$("#leftWidthSource").innerWidth()+"px"});
}
$(document).ready(function(){
	fixHeaderSpacing();

	$("div.MouseTip").tooltip({
		delay: 25,
		showURL: false,
		track: true,
		left:-60,
		bodyHandler: function() {
			return $($(this).attr("rel")).html();
		}
	});
	
});

$(window).bind("resize", function(){
	fixHeaderSpacing();
});
