	window.addEvent('domready', function(){
		
		var accordion = new Accordion('h4.toggler', 'div.element', {
			opacity: false,
			alwaysHide: true,
			display: 0,
			fixedHeight: 349,
			onActive: function(toggler, element){
			toggler.setStyle('background', '  url(http://www.integrabank.com/i/global/nav/slidebackactive.png) no-repeat left top');
			toggler.setStyle('color', '#000');
			},
		 	
			onBackground: function(toggler, element){
			toggler.setStyle('background', '  url(http://www.integrabank.com/i/global/nav/slideback.png) no-repeat left top');
			toggler.setStyle('color', '#333');
			}
		}, $('accordion'));
		$('linkage').addEvent('mouseenter', function(){ accordion.showThisHideOpen(0) });
		$('linkage2').addEvent('mouseenter', function(){ accordion.showThisHideOpen(1) });
		$('linkage3').addEvent('mouseenter', function(){ accordion.showThisHideOpen(2) });
		$('linkage4').addEvent('mouseenter', function(){ accordion.showThisHideOpen(3) });
		
	
	});