if (typeof(eConstructorPreviewObject) == 'undefined') 
{
    eConstructorPreviewObject = function()
    {
        currentPreview = 0;
    }
}
eConstructorPreviewObject.prototype.show = function(id)
{
    $('#constructorPreview' + this.currentConstructorPreview).hide();
    $('#constructorPreview' + id).show().center();
    
    this.currentConstructorPreview = id;    
}
eConstructorPreviewObject.prototype.hide = function()
{
    $('#constructorPreview' + this.currentConstructorPreview).hide();
}