/*
*	JAMP SLIDE MENÜ by Mirko Witzmann
*
*	Based on: prototype, scriptaculous (effects,builder)
*	Requirements: prototype.js, scriptaculous.js { effects.js, builder.js }
*/

var jampMenu = {
	err:0,
	
	showMenu: function(id) {
/*		var dim=$(id).getDimensions();
		$(id).style.width=0;
		$(id).style.height=0;
		
		$(id).style.width=dim.width+'px';
		$(id).style.height=dim.height+'px';*/
		
		//alert("width: "+dim.width+" height: "+dim.height);
		
		$(id).style.display='block';
	},
	
	hideMenu: function(id) {
		$(id).style.display='none';
	}
}