jQuery(document).ready(function($) {
	$('a.expand').each(function(){
		var originalText = $(this).text();
		$(this).mouseover(function(){
			$(this).text('+');
		});
		$(this).mouseout(function(){
			$(this).text(originalText);
		});
	});

});
