// Prepare for the dynamic animations
window.addEvent('load', function() {
   
	//*** replace main link onfocus with an animated one
	// below means minimum width of image because 4 menus is 515
	var slideMenu = new BySlideMenu('idMainMenu', {
		'compressSize': 145,
		'containerWidth': 950,
		'containerHeight' : 150,
		'elementWidth': 700,
		'elementHeight': 150
		
		
	});
	
	// expand the current active menu
	var arrAs = $('idMainMenu').getElements('a');
	for (var i=0; i< arrAs.length; i++) {
		if (arrAs[i].hasClass('clsLiActive')) {
				slideMenu.expand(i+1, true); // expand that menu
				break; // exit for loop
		}
	}
	
	
	
	
});

