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();
}

$(document).ready(function(){
   $('#pvt_thumb').click(function(){
      //alert('T');
      $('#product_view_type').val('t');
      $('#product_view_type_clicked').val('clicked');
      $('#product_view_type').parents('form').submit();
   });
   $('#pvt_details').click(function(){
      $('#product_view_type').val('d');
      $('#product_view_type_clicked').val('clicked');
      $('#product_view_type').parents('form').submit();
   });
});

