$(document).ready( function() {
	$('.shadow').click( function() {
		closePopup();
	});
});

Cufon.replace ('div.left li, h1, .shadow .popup a.close, div.foot div.space', { fontFamily: 'Clarendon', hover: 'true' })

function nemo(namn,foretag){
	location.href= 'mailto:'+namn+'@'+foretag;
	return false;
}


function showImage(img, title, width, height){

	calcHeight();

	$('.shadow .popup .space').html('<img src="'+img+'" alt="'+title+'">');

	//Beräkna höjd och placering
	var scroll = $(window).scrollTop() + Math.round(($(window).height() - (height + 30)) / 2);

	var width = width + 30;
	var left = width / 2;

	$('.shadow .popup').css('top', scroll+'px');
	$('.shadow .popup').css('width', width+'px');
	$('.shadow .popup').css('margin-left', '-'+left+'px');

	$('.shadow').show();
}

function closePopup(){
	$('.shadow .popup .space').html('');
	$('.shadow').hide();
}

function calcHeight(){
	var height = $(document).height();
	var w_height = $(window).height();

	if(height > w_height){
		$('.shadow').css('height', height+'px');
	}
}
