$(document).ready(function(){
	if (typeof EcContent != "undefined") {
		EcContent.init();
	}
	if (typeof menuDynamic != "undefined") {
		menuDynamic.init();
	}
	if ($("#tabsC").size() != 0) {
		if (document.location.hash != "") {
			var tab = document.location.hash.substring(1);
			if (document.getElementById("tab_"+tab)) {
				tab = document.getElementById("tab_"+tab);
				tab.onclick();
			}
		} else {
			var tab = $("#tabsC .active").attr("id");
			tab = tab.substring(tab.indexOf("_")+1);
			addHash(tab);
		}
	}
});
