// JavaScript Document
<!------------------------------- activate maintab with JavaScript ------------------------------->
$(function() {
	$("maintabs").tabs("maintabpanes > div", { event: 'click', effect: 'fade',tabs: 'h2', fadeInSpeed: '200' });
});

// JavaScript 'Show'
function Show(id) {
    obj = document.getElementsByTagName("div");
    if (obj[id].style.visibility == 'visible'){
    obj[id].style.visibility = 'hidden';
    }
    else {
    obj[id].style.visibility = 'visible';
    }
};

// JavaScript 'Sliding Tabs'
function init_sliding_tabs(){
				new sliding_tabs($$('#tab_1 .tab'),$$('#tab_1 .tab_body'),{
					tab_margin_right:'10px',
					tab_margin_left:'10px',
					initial_tab:0
				});
			}
			

// JavaScript 'Ajax Project - Tabbed Page Interface'			
function makeactive(tab) { callAHAH('content.php?content= '+tab, 
								'n_product', 
								'Loading Content...', 
								'Error'
					 );}

function Download(tab) { document.getElementById("tab1").className = ""; document.getElementById("tab2").className = ""; document.getElementById("tab3").className = ""; callAHAH('download.php?content= '+tab, 'n_product', 'Ihr Download wird gestartet ...', 'Error'); }

// JavaScript 'Vote - Messeage'			
function voted(tab) { document.getElementById("tab1").className = ""; document.getElementById("tab2").className = ""; document.getElementById("tab3").className = ""; document.getElementById("tab"+tab).className = "active"; callAHAH('vote.php?content= '+tab, 'n_product', 'Loading Content...', 'Error'); }

function Content(ID) { callAHAH('Content_id.php?content= '+ID, 
								'home', 
								'Loading Content...', 
								'Error'
					 );}