	window.addEvent('domready',function(){


		//Home Page Featured Content(on "mouseenter" walk)
		var infoMikronFC = $('boxMikronFC').getNext().set('opacity',0.8);
        var mikronFCObjectItems =[
			{title:'Can You Keep A Secret?', bodyText:'Our brand new Luddite show for 2012.', link:'secretBlurb.php', linkTitle:'See more details &#187;'},
			{title:'Losing The Plot', bodyText:'Love, life and allotments in our new show touring in 2012', link:'plotBlurb.php', linkTitle:'See more details &#187;'},
            {title:'Friends of Mikron', bodyText:'Join our thriving community and support Mikron!', link:'friends.php', linkTitle:'More about the Friends &#187;'},
             {title:'Mikron\'s Email List', bodyText:'Get the latest news and events from us.', link:'contact.php', linkTitle:'Keep in contact &#187;'}
		];
		var nSMikronFC = new noobSlide({
			mode: 'vertical',
			box: $('boxMikronFC'),
			items: mikronFCObjectItems,
			size: 300,
			handles: $$('#handlesMikronFC div'),
			handle_event: 'mouseenter',

			fxOptions: {
				duration: 1000,
				transition: Fx.Transitions.Circ.easeOut,
				wait: false
			},
			onWalk: function(currentItem,currentHandle){
				infoMikronFC.empty();
				new Element('h4').set('html',currentItem.title).inject(infoMikronFC);
			    new Element('p').set('html',currentItem.bodyText+'<br /><a class="panelLink" href="'+currentItem.link+'">'+currentItem.linkTitle+'</a>').inject(infoMikronFC);

				this.handles.setStyle('background-color','#750D0D');
				currentHandle.setStyle('background-color','#677127');
			}
		});
		//walk to next item
		nSMikronFC.next();




	});
