if (typeof(eProductPanelObject) == 'undefined') 
{
    eProductPanelObject = function(objectName, ajaxEventUID)
    {
    	this.attrChoice      = new eAttrChoiceObject(objectName + '__ajaxEventUID', ajaxEventUID);  
    	this.wishlistManager = new eWishlistManagerObject(objectName + '__ajaxEventUID', ajaxEventUID);  
    }
}
eProductPanelObject.prototype.addToCart = function(productId, quantity)
{
	this.attrChoice.setProductID(productId);
	this.attrChoice.setQuantity(quantity);
	this.attrChoice.getAttributes();
}
