
//******************************************************************************
//****************************** Menu ******************************************
//******************************************************************************

// Default Frameset
var sm_frameset = 'frameset';


// Init Vars
var menu_string;

var menu_top;
var menu_left;

var menu = new Array(1);
menu[0] = new Array(6);

var submenu = new Array(1);
submenu[0] = new Array(2);

//******************************************************************************
//****************************** Set Default Values ****************************
//******************************************************************************

// Colors
sm_bgcolor = '#000000';
sm_bgcolor_mo = '#660000';
sm_border_color = '#ff0000';



// Set StyleSheet

sm_style  = '<style type="text/css">';
sm_style += 'td.submenu {';
sm_style += 'background-color: '+sm_bgcolor;
sm_style += '}';
sm_style += 'a.submenu {';
sm_style += 'color : #c6c6c6; ';
sm_style += 'font-family: Verdana, Arial, Helvetica, sans-serif; ';
sm_style += 'font-size: 12px; ';

sm_style += 'text-decoration: none; ';
sm_style += '}';
sm_style += 'a.submenu:hover   {color : #ffffff;}';
sm_style += 'a.submenu:active  {color : #c6c6c6;}';
sm_style += 'a.submenu:visited {color : #c6c6c6; }';
sm_style += '';
sm_style += '';
sm_style += '';
sm_style += '';
sm_style += '</style>';
document.write(sm_style);






function openSite(tmp_link,tmp_target){
	if(parent.location.href.search(sm_frameset) != -1){
		parent.frames[tmp_target].document.location = tmp_link;
	}else{
		parent.location.href = sm_frameset;						// Not in right frameset--> open it
		setTimeout("parent.frames[tmp_target].document.location = tmp_link",500);
	}
	
}

// standard-menu

//document.write('<div id="empty" class="siteIndex" style="width:0;height:0;" ></div>');

// Let's go

