function showImage(image)
{
	$("body").prepend("<div id='whiteoutWrapper' class ='whiteout'></div>");
	$("#whiteoutWrapper").prepend("<div id='whiteout' class='whiteout'></div>");
	$("#whiteoutWrapper").prepend("<div id='qcVideoPlayer' name='qcVideoPlayer'><img id='lightboxImage' src='" + image +"'  /></div>");
	
	
	$("#whiteout").prepend("<span id='close_qcVideoPlayer'> </span>");

	$("#close_qcVideoPlayer").click(function ()
	{	
		document.getElementById('qcVideoPlayer').innerHTML = "";
		$("#qcVideoPlayer").slideUp('slow', function() {
				//$("#qcVideoPlayer").remove();
				$("#whiteoutWrapper").hide('slow', function() {
						$("#whiteoutWrapper").remove();
					});
			});

		$("#close_qcVideoPlayer").remove();
	});	

	var whiteout = document.getElementById('whiteout').style;
	var whiteoutWrapper = document.getElementById('whiteoutWrapper').style;
	var qcVideoPlayer = document.getElementById('qcVideoPlayer').style;
	var close_qcVideoPlayer = document.getElementById('close_qcVideoPlayer').style;
	
	var myWidth = 0, myHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) 
	{
	//Non-IE
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
	}
	else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) 
	{
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
	} 
	else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) 
	{
		//IE 4 compatible
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	}
	whiteout.width = myWidth+'px';
	whiteout.height = myHeight+'px'; 
	
	var scroll = (document.all)?document.body.scrollTop:window.pageYOffset; 
	whiteout.top = scroll+'px';
	
	var top = myHeight / 2 - 300;
	qcVideoPlayer.top = top+'px';	
	close_qcVideoPlayer.top = top-21+'px';	
	
	$("#whiteoutWrapper").show('normal', function (){ 
	
		whiteout.filter = 'alpha(opacity=70)';
	//	whiteout.-moz-opacity = '.70';
		whiteout.opacity = '.70';
	});
	
	$("#qcVideoPlayer").slideDown('normal');
	whiteoutWrapper.visibility = 'visible';
	whiteout.visibility = 'visible';
	
/*	var so2 = new SWFObject('player.swf', 'mymovie', '320', '276', '8', '');
	so2.addVariable('movie_file', image);
	so2.write('qcVideoPlayer');
	*/
}