/*
 * Title  : fvReVolusion (Volusion plugin for Power Reviews)
 * Author : Kwi Hyun Choi <masterpc@gmail.com>
 * Version: 1.0
 * Last Released: 8/5/2009
 *
 * Any comment or question to http://www.4eva.net/guestbook
 *
 * fvReVolusion is copyright(c) 2009 Kwi Hyun Choi.
 * -------------------------------------------------------------------------------
 * CONFIG:
 *   MERCHANT_ID         - Unique number from Power Reviews (found in URL)
 *   MERCHANT_CSS        - URL for css from Power Reviews (found in URL)
 *   CATEGORY_NO_WRITE   - Volusion category number for review writing form
 *   SNIPPET_MIN_REVIEWS - Minimum number of reviews to display snippet.
 *                         Applied to only index and category pages.
 *   SNIPPET_ON_INDEX    - fvIndexSnippetWriterBelowPrice
 *   SNIPPET_ON_CATEGORY - fvCategorySnippetWriterBelowPrice
 *   SNIPPET_ON_PRODUCT  - fvProductSnippetWriterBelowImage
 *   REVIEW_ON_PRODUCT   - fvReviewWriterBelowDescription | fvReviewWriterOnExtInfo
 *------------------------------------------------------------------------------*/

/*
 * CONFIGURATION
 *------------------------------------------------------------------------------*/
var fvSettings = {
	MERCHANT_ID        : '11766',
	MERCHANT_CSS       : 'http://cdn.powerreviews.com/aux/11766/3687/css/powerreviews_express.css',
	CATEGORY_NO_WRITE  : '111',
	SNIPPET_MIN_REVIEWS: 1,

	SNIPPET_ON_INDEX   : new fvIndexSnippetWriterBelowPrice(),
	SNIPPET_ON_CATEGORY: new fvCategorySnippetWriterBelowPrice(),
	SNIPPET_ON_PRODUCT : new fvProductSnippetWriterBelowImage(),
	REVIEW_ON_PRODUCT  : new fvReviewWriterBelowDescription(),

	DEBUG              : false,			// true, false
	DEBUG_TARGET       : 'I',			// 'I', 'S', 'P'
	DEBUG_PRODUCT_CODE : '------'		// Product #
};

fvRevolusion.main();
