﻿var addthis_config = {
    ui_language: "en",
    ui_offset_left: -30
}

var closeTab = true;
var currentTab = null;
var currentTabHeader = null;

$(document).ready(function() {
	$(".IslamicCalendarPopup").colorbox({
		width: "50%",
		height: "55%",
		close: "",
		iframe: true
	});
});

function TabMouseOver(tabHeader, tabid) {
	currentTabHeader = tabHeader;
	temp = $("#" + tabid);

	 mainDiv = document.getElementById('Main');
	 
	tabHeader.className = 'TabOn';
	var containerPosition = $('.Options').position();
	temp.css("display", "block");
	temp.css("left", "743px");
}

function TabMouseOut(tabHeader, tabid) {
	currentTab = tabHeader;
	setTimeout(function() {
		if (closeTab) {
			currentTab.className = 'TabOff';
			document.getElementById(tabid).style.display = "none";
		}
	}, 50
    );
}

function CloseTab(tab, tabHeaderId) {
	currentTab = document.getElementById(tabHeaderId);
	closeTab = true;
	setTimeout(function() {
		if (closeTab) {
			currentTab.className = 'TabOff';
			tab.style.display = "none";
		}
	}, 50
    );
}
