function showPicture(pictureFile, width) {
	// Create overlay
	$('body').append('<div id="overlay"></div>');
	$('#overlay').css({
		backgroundColor: '#9cadbd',
		position: 'absolute',
		top: '0px',
		left: '0px',
		width:  $('body').width(),
		height: $('body').height(),
		opacity: 0.5,
/*		filter: 'alpha(opacity=30)',*/
		zIndex: 90
	});

	// Create vote helper
	$('body').append('<div id="pictureContainer"><a href="#" onclick="return hidePicture()"><img border="0" src="' + pictureFile + '" /></a></div>');

	var centerPos = ( $('body').width() - width ) / 2;

	$('#pictureContainer').css({
		position: 'absolute',
		top: 10,
		left: centerPos,
		zIndex: 91
	});
	$('#overlay').fadeTo("fast", 0.3);
	$('#pictureContainer').fadeIn("normal");
}

function hidePicture() {
	$('#overlay').fadeOut('normal');
	$('#pictureContainer').fadeOut('fast', function() {
		$('#pictureContainer').remove();
		$('#overlay').remove();
	});
	return false;
}

