function showimage(src, w, h)
{
	$('#showImageBlock').height($('#showImage').height());
	$('#showImage').hide();
	$('#showImageBlock').addClass('loading');

	$('#showImageBlock').animate({ height: h });
	
	$('#showImage').width(w);
	$('#showImage').height(h);
	$('#showImage').attr('src', '/production/images/'+src);

	$('#showImage').load(function () {
		$('#showImageBlock').removeClass('loading');
		$('#showImage').show();
    });

	return false;
}
