var navigationInterval = null;
var lastId = null;
var activeObj = null;
var activeWidth = null;
function showTopNavigation(id, obj, width) {
	window.clearInterval(navigationInterval);
	$('#'+id).show();
	$(obj).attr('style', 'background:url(/10/resources/images/icon_arrow_navigation_left_white.gif) 6px 12px no-repeat;background-color:#F8981D;border-bottom:1px solid #F8981D;'+width);
	if (lastId != id) {
		$('#'+lastId).hide();
	}
	activeObj = obj;
	activeWidth = width;
}

function hideTopNavigation(id, obj, width) {
	navigationInterval = window.setInterval('__hideNavigation('+id+');', 0);
	$(obj).attr('style', 'border-bottom:1px solid white;background-color:#000000;'+width);
	$(activeObj).attr('style', 'background:url(/10/resources/images/icon_arrow_navigation_white.gif) 4px 14px no-repeat;border-bottom:1px solid white;background-color:#000000;'+activeWidth);
	if (lastId != null) {
		$('#'+lastId).hide();
	}
	lastId = id;
	activeObj = obj;
	activeWidth = width;
}

function showNavigation(id) {
	window.clearInterval(navigationInterval);
	$(activeObj).attr('style', 'background:url(/10/resources/images/icon_arrow_navigation_left_white.gif) 6px 12px no-repeat;background-color:#F8981D;border-bottom:1px solid #3D3D3D;background-color:#3D3D3D;'+activeWidth);
	$('#'+id).show();
}

function hideNavigation(id) {
	navigationInterval = window.setInterval('__hideNavigation('+id+');', 1000);
	$(activeObj).attr('style', 'border-bottom:1px solid white;background-color:#000000;'+activeWidth);
	lastId = id;
}

function __hideNavigation(id) {
	$('#'+id).hide();
}
