window.addEvent('domready',function(){
	//SAMPLE 1 (auto, every 5 sec)
	var nS1 = new noobSlide({
		box: $('rssData'),
		items: [0,1,2,3,4],
		size: 270,
		interval: 10000,
		fxOptions: {
			duration: 5000
		},
		autoPlay: true
	});
	//var mouseEnterFunction = function(){
			//this.fx.start('background-color', '#ff0000');
			//alert(this.innerHTML);
			
	//}
	/*var mouseLeaveFunction = function(){
			nS1.resume();
	}*/
	//$('rssData').addEvent('mouseenter', mouseEnterFunction);
	//$('rssData').addEvent('mouseleave', mouseLeaveFunction);
	$$('#rssData a').addEvent('mouseover', function() {
		//nS1.stop();
		if ($('rssData').getStyle('left') == '0px')
		{
			return false;
		}
		else
		{								  
			nS1.fx.pause();
		}
	});
	$$('#rssData a').addEvent('mouseout', function() {
		//nS1.play(true);
		//nS1.play(5000, "next", false);
		//nS1.fx.start(nS1.size*-nS1.currentIndex)
		if ($('rssData').getStyle('left') == '0px')
		{
			return false;
		}
		else
		{		
			nS1.fx.resume();
		}
	}); 

});