// scripts room

window.addEvent('domready', function(){
	var initMultiBox = new multiBox({
		mbClass: '.mb',//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
		useOverlay: true,//use a semi-transparent background. default: false;
		maxSize: {w:800, h:600},//max dimensions (width,height) - set to null to disable resizing
		recalcTop: true,//subtract the height of controls panel from top position
		initialSize: {w:270, h:100},//initial width/height the box will open at before resizing
		contentColor: '#000000',//background colour of the content holder within the pop-up
		showNumbers: true,//show numbers such as "4 of 12"
		showControls: true,//show the previous/next, title, download etc
		movieSize: {w:600, h:270},//default width/height of movie
		path: 'assets/swf/'//path to mp3player and flvplayer etc
	});
	
	//slideshow
	var data = {
		  'pic-bedroom.jpg': { caption: '' },
		  'pic-coffee.jpg': { caption: '' },
		  'pic-bathroom.jpg': { caption: '' },
		  'pic-flower.jpg': { caption: '' },
		  'pic-tv.jpg': { caption: '' }
		};
	var myShow = new Slideshow.KenBurns('show', data, {delay: 5000, duration: 1200, pan: 100, zoom: 118, controller: false, height: 240, hu: 'assets/images/bedroom/', thumbnails: false, width: 610});
});