function startSlider(){
	$('#rss-content').easySlider({
			auto: true,
			continuous: true,
			pause: 4000,
			prevText: '&lt;&lt;',
			nextText: '&gt;&gt;'
	});
}

$(document).ready(function(){

	
	//couldnt get serialScroll + scrollTo to work!
	$('#rss-content').feedreader({
		//targeturl: 'http://feeds.feedburner.com/feedburner/PGaA',
		targeturl: '/custom_includes/feed.php',
		items: 20,
		descLength:35,
		callback: function(){
			$('#rss-content').easySlider({
				auto: true,
				continuous: true,
				pause: 8000,
				prevText: '&lt;&lt;',
				nextText: '&gt;&gt;'
			});
		}
	})
	
		
});
function loadImage(path){
	path = path.replace('/medium/', '/large/');
	$('.large-product-image').css({'backgroundImage':'url(' + path + ')'});
	return false;
}

