$(document).ready(function()
{	
	$('.replace').each(function()
	{
	    var default_value 	= this.value;
	    var default_type  	= this.type;
	    
	    this.type = 'text';
	    
	    $(this).focus(function()
	    {
	        if(this.value == default_value)
	        {
	            this.value = '';
	            this.type = default_type;
	        }
	    });
	    
	    $(this).blur(function()
	    {
	        if(this.value == '')
	        {
	            this.value = default_value;
	            this.type = 'text';
	        }
	    });
	});
	
	//------------------------------------
	
});

function Confirm()
{
	var agree=confirm("Vill du verkligen det?");
	if (agree) return true;
	else return false;
}

function Toggle(obj)
{
	var el = document.getElementById(obj);
	
	if(el.style.display != "none")
	{
		el.style.display = "none";
	}
	else
	{
		el.style.display = "";
	}
}
