window.addEvent('domready',function(){
	
	$('btn_next').set('opacity',0);
	$('btn_prev').set('opacity',0);
	
	$('showcase_navigation_next').addEvents({
		mouseenter: function(){
			$('btn_next').fade(1);
		},
		mouseleave: function(){
			$('btn_next').fade(0);
		}
	});
	$('showcase_navigation_prev').addEvents({
		mouseenter: function(){
			$('btn_prev').fade(1);
		},
		mouseleave: function(){
			$('btn_prev').fade(0);
		}
	});
	
	var info5 = $('info5').set('opacity',1);
	
	var sampleObjectItems =[
		{title:'Studio Soleil', link:'/portfolio/?architecture=8'},
		{title:'Canvas Space', link:'/portfolio/?architecture=22'},
		{title:'Violinst I', link:'/portfolio/?art'},
	];
	var nS5 = new noobSlide({
		mode: 'horizontal',
		box: $('Home_Box'),
		size: 700,
		items: sampleObjectItems,
		addButtons: {
			previous: $('showcase_navigation_prev'),
			next: $('showcase_navigation_next')
		},
		onWalk: function(currentItem){
			info5.empty();
			new Element('h4').set('html',"<a href='"+currentItem.link+"'>"+currentItem.title+", More Info &rarr;</a>").inject(info5);
		}
	});
});