








jQuery.fn.productpreview = function(){

$(this).click(function(){

var rownum = $(this).attr('id').split("-");
var recnum = $("#rec-"+rownum[1]).attr('value');
var args = arguments[0] || {};

$.post(w5minerva_modulerelpath+"parsing/minervarequests.php", {
globalcall: "details_product",
recnum: recnum
},

  function(data){

	if (data){
	var product_arr = data.split("|");
    $("#prod_preview").removeClass("notvisible");
    $("#prod_desc_title").html(product_arr[0]);
    if(product_arr[1]){
    $("#prod_desc_image").html("<img src='"+webpath+"webadmin/apprun/apps/minerva/gallery/"+product_arr[1]+"' width=\"300px\" height=\"225\">");
    }
	}else{
    $("#prod_preview").addClass("notvisible");
    $("#prod_desc_title").html('');
    $("#prod_desc_image").html('');
    }


  });


});

};








