window.addEvent('domready', function()
{     
  if($("pop").get('html').length>'10')
  {
	var initMultiBox = new multiBox({
		mbClass: '.mbx',//class you need to add links that you want to trigger multiBox with (remember and update CSS files)
		container: $(document.body),//where to inject multiBox
		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;
		maxSize: null,//{w:600, h:null}max dimensions (width,height) - set to null to disable resizing
		addDownload: true,//do you want the files to be downloadable?
		addRollover: true,//add rollover fade to each multibox link
		addOverlayIcon: true,//adds overlay icons to images within multibox links
		addChain: true,//cycle through all images fading them out then in
		recalcTop: true,//subtract the height of controls panel from top position
		addTips: true,//adds MooTools built in 'Tips' class to each element (see: http://mootools.net/docs/Plugins/Tips)
//		ignoreDesc: true,
		autoOpen: 1//to auto open a multiBox element on page load change to (1, 2, or 3 etc)
	});
  }
		
 
   //box = new MultiBox('pdpp_ImageObject', {useOverlay: true});
  
   
   
});
                                                                                                                                    
