jQuery(document).ready(function($){

/*
	---------------------------------------
	RSS animated element
	---------------------------------------	
	*/
	
	//$("p#rss-info").css({'background-position' : '0 -47px', 'top' : '-36px'});
	
	$("p#rss-info").hover(
		function () {
			$(this).animate({
				/*'background-position' : '0px 0px',  */
				'height' : '56px', 
				'top' : '0px', 
				}, 200 );
		    },
		function () {
			$(this).animate({
				/*'background-position' : '0 -47px',*/
				'top' : '-36px', 
				}, 100 );
		    }
	);
	
	
	/*
	---------------------------------------
	see more links animated background
	---------------------------------------	
	*/
	
	$("body#home p.see-more a").hover(
		function () {
			$(this).animate({
				backgroundPosition:"(-52px -72px)",
				}, 50 );
		    },
		function () {
			$(this).animate({
				backgroundPosition:"(-60px -72px)",
				}, 100 );
		    }
	);
	
});