/**
 * Common
 */

var jvLog = {

	log: function() {
		jQuery.post(
			'/login/log/pv.jsp',
			{
				ref: document.referrer
			}
		);
	},
	
	nothing: function() {}
}

jQuery(function() {
	if (document.location.href.indexOf("productDesc.jsp") == -1) {
		jvLog.log();
	}
})
