var multiBox

function dropdownInit(){

	if($('top_nav')!=null){
		var myMenu = new MenuMatic({ hideDelay:150});	
		$('subMenusContainer').setStyles({'display': 'block'});
			 }
}

function multiboxInit(){
	//call multiBox
	if($$('.mb').length > 0)//only triggered if 'mb' class found on page
	{
		multiBox = new multiBox('mb', {
			descClassName: 'multiBoxDesc',//the class name of the description divs
			path: '/files/',//path to mp3 and flv players
			useOverlay: true,//use a semi-transparent background. default: false;
			maxWidth: 740,//max width (set to false to disable)
			maxHeight: 600,//max height (set to false to disable)
			addDownload: false,//do you want the files to be downloadable?
			pathToDownloadScript: './Scripts/forceDownload.asp',//if above is true, specify download script
			addRollover: true,//add rollover fade to each multibox link
			addOverlayIcon: true,//adds overlay icons to images within multibox links
			addChain: false,//cycle through all images fading them out then in
			recalcTop: true//subtract the height of controls panel from top position
		});
	};

}

window.addEvent('domready', function () {
	dropdownInit();
	
	multiboxInit();
	
});


