/*
// R.Balvardi "Tabs & Slides" Plugin for Mitraplus! 1.0.x - Version 2.3
// License: www.mitraplus.ir
// Authors: R.Balvardi
// Copyright (c) 2006 - 2007 R.Balvardi.gr - www.mitraplus.ir
// Project page at www.mitraplus.ir - Demos at http://demo.mitraplus.ir
// Support forum at http://forum.mitraplus.ir
// ***Last update: August 30th, 2007***
*/

// Default Loader
function init_jwTS() {
    if (arguments.callee.done) return;
    arguments.callee.done = true;
	initShowHideDivs();
	tabberAutomatic(tabberOptions);
	//showHideContent(false,1);});	// Automatically expand first item - disabled by default
};
// DOM2
if ( typeof window.addEventListener != "undefined" ) {
	window.addEventListener( "load", init_jwTS, false );
// IE 
} else if ( typeof window.attachEvent != "undefined" ) {
	window.attachEvent( "onload", init_jwTS );
} else {
	if ( window.onload != null ) {
		var oldOnload = window.onload;
		window.onload = function ( e ) {
			oldOnload( e );
			init_jwTS();
		};
	} else {
		window.onload = init_jwTS;
	}
}
