jQuery(document).ready(function(){
	jQuery('#featured').easySlider({
		auto: true,
		controlsShow: true,
		pause: 4000,
		continuous: true
	});
	jQuery('#rss-store ul li a, #media-last ul li a').hover(
	function(){
		jQuery(this).find('p').fadeIn(500);
	}
	,
	function(){
		jQuery(this).find('p').fadeOut(500);
	});
});
