$(document).ready(function()
{

		$('.linkimgrdwn').toggle(function()
								{
									
									$(this).html('Hide the answer')
											.removeClass('linkimgrdwn')
											.addClass('linkimgrup');
									
									$('#faqList blockquote#'+this.id).show();
								},
								function()
								{
									$(this).html('Show the answer')
											.removeClass('linkimgrup')
											.addClass('linkimgrdwn');
									$('#faqList blockquote#'+this.id).hide();
								});
});
