	var tab_adedi = 8
	tab_adedi = tab_adedi+1;
function ShowTopMenu(selectedItemIndex) {
	$('top_menu_container').setStyle({ background: 'url(/Img/bg-top-menu.jpg) top repeat-x'})
	for(i=1;i<tab_adedi;i++) {
		if(i!=selectedItemIndex) {
			$('top_menu_content_'+i).style.display = 'none';
		} else {
			$('top_menu_content_'+i).style.display = 'block';
		}
	}
}
function HideTopMenu() {
	$('top_menu_container').setStyle({ background: 'url(/Img/topImg/1.jpg) top left no-repeat'})
	for(i=1;i<tab_adedi;i++) {
		document.getElementById('top_menu_content_'+i).style.display = 'none';
	}
//					For Internal Pages :
	$('top_menu_container').setStyle({ background: 'url(/Img/bg-top-menu.jpg) repeat-x'})
	$('top_menu_content_' + active_top_menu).show();
}
function init() {
// For Internal Pages :
	$('top_menu_elem_' + active_top_menu).className = 'active_top_menu';
	$('top_menu_container').setStyle({ background: 'url(/Img/bg-top-menu.jpg) top repeat-x'})
	$('top_menu_content_' + active_top_menu).show();
}
Event.observe(window, "load", init); 