﻿$(document).ready(function()
{
	$('div.hideable').each(function()
	{
	    if ($(this).height() > 20)
        {
		    $(this).prepend($('<a href="javascript:void(0);" style="color: #969696; text-decoration: none;float:right;display:block;">Dölj [-]</a>').click(function()
		    {
			    var t=$(this);
			    var d=$(t.parent());
    			
			    if (d.attr("rel") == "" || d.attr("rel") == undefined)
			    {
				    d.attr("rel", d.height());
				    d.animate({height: 13}, "normal");
				    t.text("Visa [+]");
			    }
			    else
			    {
				    d.animate({height: d.attr("rel")}, "normal");
				    d.attr("rel", "");
    				
				    t.text("Dölj [-]");
			    }
		    }));
		}
	});
	
	if (window.location.hash == '#gbpost')
	{
	    $('#gustbookpost').focus();
	}
});