var MENU_POS_XP =[
// Level 0 block configuration
{
	// Item's height in pixels
	'height'     : 18,
	// Item's width in pixels
	'width'      : 175,
	// if Block Orientation is vertical
	'vertical'   : false,
	// Time Delay in milliseconds before subling block expands
	// after mouse pointer overs an item
	'expd_delay' : 200,
	// Style class names for the level
	'css': {
		// Block outing table class
		'table' : '',
		// Item outer tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'outer' : ['mXPmouto','',''],
		// Item inner tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'inner' : ''
	}
},
// Level 1 block configuration
{
	'width'      : 179,
	'height'     : 21,
	// Vertical Offset between adjacent levels in pixels
	'block_top'  : 20,
	// Horizontal Offset between adjacent levels in pixels
	'block_left' : -2,
	// block behaviour if single frame:	
	// 1 - shift to the edge, 2 - flip relatively to left upper corner
	'wise_pos'   : 2,
	'vertical'   : true,
	// transition effects for the block 
	// [index on expand, duration on expand, index on collapse, duration on collapse]
//	'transition' : [0, 0.3, 0, 300],
//	'transition' : ['blendTrans(DURATION=0.5)','blendTrans(DURATION=0.5)'],
//	'transition' : ['revealTrans(TRANSITION=20,DURATION=0.5)','revealTrans(TRANSITION=20,DURATION=0.5)'],
	'transition' : ['revealTrans(TRANSITION=5,DURATION=0.3)','revealTrans(TRANSITION=4,DURATION=0.3)'],
	// Time Delay in milliseconds before menu collapses after mouse
	// pointer lefts all items
	'hide_delay' : 300,
	'css' : {
		'table' : 'mXPtable',
		'outer' : '',
		'inner' : ''
	}
},
// Level 2 block configuration
{
	'block_top'  : 0,
	'block_left' : 160
}
	//Subling level configurations are inherited from level 2
]





//uiklapmenu offerte bekijken 
//pieter@twovisions
//6 april 2006
clipBottom=0;
var time;
var time2;
showcount=0;

function show_save_menu() {
	show_save();
}

function show_save() {
	if(document.getElementById("example")) {
		clearTimeout(time2);
		if(clipBottom<document.getElementById("example").offsetHeight) {
			document.getElementById("example").style.clip="rect(0px,206px,"+clipBottom+"px,0px)";
			clipBottom+=10;
			
			time = setTimeout('show_save()',30);
		} else {
			clearTimeout(time);
			showcount++;
			//alert(showcount);
			if(showcount<2) {
				hide_save3();
			}
		}
	}
}
function hide_save3() {
	time2 = setTimeout('hide_save()',5000);
}

function hide_save2() {
	time2 = setTimeout('hide_save()',50);
}

function hide_save() {
	if(document.getElementById("example")) {
		clearTimeout(time);
		if(clipBottom>-1) {
			document.getElementById("example").style.clip="rect(0px,206px,"+clipBottom+"px,0px)";
			clipBottom-=10;
			
			time2 = setTimeout('hide_save()',30);
		} else {
			clearTimeout(time2);
		}
	}
}

function show_save2() {
	clearTimeout(time2);
	if(document.getElementById("example")) {
		clearTimeout(time2);
		if(clipBottom<document.getElementById("example").offsetHeight) {
			document.getElementById("example").style.clip="rect(0px,206px,"+clipBottom+"px,0px)";
			clipBottom+=10;
			
			time = setTimeout('show_save2()',30);
		} else {
			clearTimeout(time);
		}
	}
}
//einde uiklap