$(document).ready(
	function()
	{	
        $(".slider").each
        (
            function()
            {
                $(this).click(function(event)
                {
                     if($(this).data("visible") == false)
                     {
                        $(this).find(".content").slideDown("slow");
                        $(this).find(".close").html("-");
                        $(this).data("visible" , true);                     
                     }
                     else
                     {
                        $(this).find(".content").slideUp("slow");
                        $(this).find(".close").html("+");
                        $(this).data("visible" , false);
                     }
                });
                
                if($(this).attr("ID") == "Slider10")
                {
                        $(this).find(".content").slideDown("slow");
                        $(this).find(".close").html("-");
                        $(this).data("visible" , true);                     
                }
                else
                {
                        $(this).find(".content").slideUp("slow");
                        $(this).find(".close").html("+");
                        $(this).data("visible" , false);
                }
            }
        )
});