jQuery(document).ready(function($)
{
	$(".signature").hide();
	$(".sig_button").css("cursor","pointer").click(function(event)
	{
		event.preventDefault();
		if ($(this).html() === "-")
		{
			var sig = $(this).parent().find(".signature");
			sig.stop(true,true).slideUp("slow");
			$(this).html("+");
		}
	});
	$(".sig_holder").hover(function()
	{
		if ($(this).find(".sig_button").html() === "+")
		{
			$(this).find(".sig_button").html("-");
			var sig = $(this).find(".signature");

			if (sig.css("display") == "none")
			{
				sig.stop(true,true).slideDown("slow");
			}
		}
	},function()
	{
		//Nothing here..
	});
});
