$(document).ready(function() {

	/*

	$('div.stories div.description').hover(
	function() {
		color = $(this).css('backgroundImage').replace('round','roundcolor');
		$(this).css('backgroundImage',color);
	},
	function(){
		color = $(this).css('backgroundImage').replace('roundcolor','round');
		$(this).css('backgroundImage',color);
	}
	);
	
	*/

	$('div.stories div.description').hover(
	function() {
		color = $(this).css('backgroundImage').replace('roundcolor','round');
		$(this).css('backgroundImage',color);
	},
	function(){
		color = $(this).css('backgroundImage').replace('round','roundcolor');
		$(this).css('backgroundImage',color);
	}
	);
	
});
