BLANK_IMAGE = '/bo/coolmenu/images/b.gif';
  var winX = 0, winY = 10;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    winX = (window.innerWidth - 632) / 2;
    //winY = window.innerHeight;
  } 
  else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    winX = (document.documentElement.clientWidth - 632) / 2;
    //winY = document.documentElement.clientHeight;
  } 
  else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    winX = (document.body.clientWidth - 632) / 2;
    //winY = document.body.clientHeight;
  }

if (winX == 0) {
   winX = (screen.width - 632) / 2;
}

var STYLE = {
	border:2,			// item's border width, pixels; zero means "none"
	shadow:3,			// 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:"#000000",		// background color for the items
		bgOVER:"#DFDFDF"	// 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:[winX, winY], itemoff:[0,121], leveloff:[24,0], style:STYLE, size:[25,122]},
	{code:"Start", url:"index.php"
	},
	{code:"Portfolio", url:"dfaportfolio.php"
	},
	{code:"Foto's / Photos", url:"foto.php"
	},
	{code:"Contact", url:"contactform.php"
	},
	{code:"Links", url:"dfalinks.php"
	}
];


