BLANK_IMAGE = 'gfx/b.gif';

var STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#666666",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"white",		// background color for the items
		bgOVER:"#B6BDD2"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn",		// CSS class for items
		OVER:"clsCMOver"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
	{pos:[10,10], itemoff:[21,0], leveloff:[0,150], style:STYLE, size:[22,150]},
	{code:"Startseite","url":"?content=seiten/startseite"},
	{code:"Schwimmklub",
		sub:[
			{},
			{code:"Gr&uuml;ndung / Zweck","url":"?content=seiten/gruendung"},
			{code:"Der Vorstand","url":"?content=seiten/vorstand"},
			{code:"Die Schwimmleitung","url":"?content=seiten/schwimmleitung"}
		]
	},
	{code:"Wettk&auml;mpfe",
		sub:[
			{},
			{code:"M&auml;nnlichen-Cup","url":"?content=seiten/cup_maennlichen"},
			{code:"Chutzen-Cup","url":"?content=seiten/cup_chutzen"}
		]
	},	
	{code:"Trainings und Kurse","url":"?content=seiten/schwimmtraining"},
	{code:"Bildergalerie","url":"?content=seiten/bildergallerie"},
	{code:"T&auml;tigkeitsprogramm","url":"?content=seiten/events_show"},	
	{code:"Sponsoren","url":"?content=seiten/sponsors"},
	{code:"Kontakt","url":"?content=seiten/kontakt"}
];

var ADMIN_MENU_ITEMS = [
	{pos:[10,10], itemoff:[21,0], leveloff:[0,150], style:STYLE, size:[22,150]},
	{code:"Administratives",
		sub:[
			{},
			{code:"Seiten-Einstellungen","url":"?content=userseiten/gsettings"},
			{code:"Schwimmleitung","url":"?content=userseiten/manageschwimmleitung"},
			{code:"Wettk&auml;mpfe","url":"?content=userseiten/waettkaempfe"},
			{code:"Bildergalerie","url":"?content=userseiten/bildergallerie"},
			{code:"T&auml;tigkeitsprogramm","url":"?content=userseiten/events"},
			{code:"Schwimmtraining","url":"?content=userseiten/edit_schwimmtraining"},
			{code:"Sponsoreneditor","url":"?content=userseiten/sponsoreneditor"},
			{code:"Interne Links","url":"?content=userseiten/internlinks"}
		]
	}
];

