/* MAIN MENU OBJECT */
/* **************** */


			this.wprint = function(msg) { document.write(msg ? msg : ""); }
if(!this.par) 	this.par 		= ".";
if(!this.IS_IE)	this.IS_IE 		= false;


// -- CREATE THE OBJECT
var menu = {};
/* MENU OBJECT */ {
	// ---------.---------.---------.---------.---------.
	// -- FOR THE MAIN MENU
	menu.main = {};

	// -- CREATE AN ITEM
	menu.main.createItem = function(pWidth, pName, pLink, pAltText) {
		wprint("<LI>");
		
			// -- SET IMAGE PATH
			var tImg = par + "/images/_main_menu/mtab1_" + pName +".png";
			
			// DETERMINE THE STYLE
			if(!IS_IE) 
				var t_imgStyle = "background:url(" + tImg + ") no-repeat;";
			else 
				var t_imgStyle = "filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(" +
					"src=\"" + tImg + "\", sizingMethod='scale'); ";
				
			
			// -- WRITE THE IMAGE
			wprint(
				"<A HREF='" + pLink + "'>"+
					"<IMG SRC='"+ par +"/spacer.gif' WIDTH='"+ pWidth +"' " +
					" 	STYLE='"+ t_imgStyle +"' "+
					" 	ALT='"+ pAltText +"' "+ 
					">" +
					"<SPAN CLASS='altText'>"+ pAltText+"</SPAN>" +
				"</A>"
				);
		wprint("</LI>");
	}
}


