var filedwprod_ur115_20X = 'index.php?route=module/filedwprod/';
var filedwprod_url23X_30X = 'index.php?route=extension/module/filedwprod/';
var filedwprod_url401X = 'index.php?route=extension/filedwprod/module/filedwprod|';
var filedwprod_url402X = 'index.php?route=extension/filedwprod/module/filedwprod.';

var filedwprod = {
	'prodpage': function() {
		var product_id = false;
		
		if($(".button-group-page input[name='product_id']").length) {
			product_id = $(".button-group-page input[name='product_id']").val();
		} else if($('#input-product-id').length) {
			product_id = $('#input-product-id').val();
		} else if($(".product-info input[name='product_id']").length) {
			product_id = $(".product-info input[name='product_id']").val();
		} else if($("#product input[name='product_id']").length) {
			product_id = $("#product input[name='product_id']").val();
		} 
			
		if (product_id) {
			$.ajax({
				url: filedwprod_url23X_30X + 'getcache',
				type: 'post',
				data: {product_id:product_id},
				cache: true,
				complete: function() { 
				},
				success: function(json) {
					if(json) {
						//$('#button-cart').parent().before(json['html']);
						$('#qty-cart').before(json['html']);

					}
				}
			});
		}
	},
	'initjson': function() {
		filedwprod.prodpage();
	}	
}
$(document).ready(function() {
filedwprod.initjson();
});