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

    var infoslide = $('infoslide').set('opacity',0.5);
    var sampleObjectItems =[
    	{title:'Sleep Shed', date:'August 2008', link:'project-sleepshed.php'},
    	{title:'Sleep Shed', date:'August 2008', link:'project-sleepshed.php'},
    	{title:'Home', date:'July 2008', link:'project-home.php'},
    	{title:'Home', date:'July 2008', link:'project-home.php'},
    	{title:'Hut', date:'January 2009', link:'project-hut.php'},
    	{title:'Hut', date:'January 2009', link:'project-hut.php'},
    ];
    var nS3 = new noobSlide({
    	box: $('boxslide'),
    	items: [0,1,2,3,4,5],
    	size: 780,
    	items: sampleObjectItems,
    	interval: 5000,
    	startItem: 0,
    	autoPlay: true,
    	fxOptions: {
    		duration: 1000,
    		wait: false
    	},
    	onWalk: function(currentItem){
    		infoslide.empty();
    		new Element('h4').set('html','<a href="'+currentItem.link+'">'+currentItem.title+'</a>').inject(infoslide);
    		new Element('p').set('html','<strong>Date</strong>: '+currentItem.date).inject(infoslide);
    	}
    });

});