$(document).ready(function() {
	$('#shower').hide();
});

function description_toggle() {
	var shower = $('#shower')
	
	if (shower.is(':hidden')) { // Is verborgen
		
		shower.fadeIn('fast');
		$('#arrow_shower').attr('src', 'http://kade32.nl/images/portfolio/arrow_up.png')
		
	} else { // Is zichtbaar
		
		shower.fadeOut('fast');
		$('#arrow_shower').attr('src', 'http://kade32.nl/images/portfolio/arrow_down.png')
		
	}
};


function portfolio_hide(id)
{
	pw = document.getElementById("popup_wrapper");
	pw.style.display = "none";
	
	pp = document.getElementById("thumb_vergroot_portfolio");
	pp.style.display = "none";
}

function portfolio_show(id)
{
	
	// Get the portfolio container
	pw = document.getElementById("popup_wrapper");
	pw.style.display = "";
	
	pp = document.getElementById("thumb_vergroot_portfolio");
	pp.style.display = "";
}

//
//	Function to show / hide a div.
//
function change(id)
{
	ID = document.getElementById(id);
	if(ID.style.display == "")
	{
		ID.style.display = "none";
	} else	{
		ID.style.display = "";
	}	
}

