$(document).ready(function()
{
    /* hide/show more rss feeds */
	$('#toggleDisplay').click(function()
	{
		$('#hideblock').slideToggle('medium');

		if($('#morelesstxt').html() == "Less")
		{
		   $('#morelessimg').attr({src: '/images/plus-green.gif', alt: 'More RSS Feeds'});
		   $('#morelesstxt').html("More");
		   $('#morelesstxt').attr({style: "color: #419b00; text-decoration: none !important;"});
		} else {
		   $('#morelessimg').attr({src: '/images/minus-red.gif', alt: 'Less RSS Feeds'});
		   $('#morelesstxt').html("Less");
		   $('#morelesstxt').attr({style: "color: #bb2d00; text-decoration: none !important;"});
		}

		return false;
	});
});