var prevSearch = "";
$(document).ready(function () 
{
	
	$("h3.down").prepend("<img class=\"d\" src=\"images/down.png\"/> ");
	$("h3.down").prepend("<img class=\"r\" src=\"images/right.png\"/> ").children("img.d").toggle();
	$("h3.down").parent().next("div").toggleClass("hidden");
	
	$("h3.down").click(function ()
	{
		$(this).parent().next().next("a.readMore").toggle();
		$(this).parent().next("div").toggle("fold", {direction: "up"}, 500, function ()
		{
			$(this).removeAttr("style");
			$(this).toggleClass("hidden");
		});
		
		$(this).children().toggle();
	});
	
	$("a.readMore").click(function ()
	{
		$(this).toggle();
		$(this).prev("div").toggle("fold", {direction: "up"}, 500, function ()
		{
			$(this).removeAttr("style");
			$(this).toggleClass("hidden");
		});
		
		$(this).prev().prev().children("h3.down").children().toggle();
	});
});