TransMenu.spacerGif = "images/spacer.gif";                     // path to a transparent spacer gif
TransMenu.dingbatOn = "";            // path to the active sub menu dingbat
TransMenu.dingbatOff = "";          // path to the inactive sub menu dingbat
TransMenu.dingbatSize = 9;                            // size of the dingbat (square shape assumed)
TransMenu.menuPadding = 2;                             // padding between menu border and items grid
TransMenu.itemPadding = 3;                             // additional padding around each item
TransMenu.shadowSize = 2;                              // size of shadow under menu
TransMenu.shadowOffset = 3;                            // distance shadow should be offset from leading edge
TransMenu.shadowColor = "#ffffff";                        // color of shadow (transparency is set in CSS)
TransMenu.shadowPng = "images/c_grey-40.png";               // a PNG graphic to serve as the shadow for mac IE5
TransMenu.backgroundColor = "#2bb7ef";                   // color of the background 0d2762 (transparency set in CSS)
TransMenu.backgroundPng = "images/c_white-90.png";          // a PNG graphic to server as the background for mac IE5
TransMenu.hideDelay = 1000;                            // number of milliseconds to wait before hiding a menu
TransMenu.slideTime = 300;                             // number of milliseconds it takes to open and close a menu

function init() {
	if (TransMenu.isSupported()) {
  	TransMenu.initialize();				
		menu1.onactivate = function() { MM_swapImage('hotel_martinique','','images/nav_hotels.gif',1); };
		menu1.ondeactivate = function() { MM_swapImgRestore(); };
		
		menu2.onactivate = function() { MM_swapImage('hotel_guadeloupe','','images/nav_discover.gif',1); };
		menu2.ondeactivate = function() { MM_swapImgRestore(); };
		
		menu3.onactivate = function() { MM_swapImage('hotel_antilles','','images/nav_formulate.gif',1); };
		menu3.ondeactivate = function() { MM_swapImgRestore(); };		
	}
}