    
    function loadRetailerUIValues(elem){
         $('#pws_retailer_id').val(1010);
        
         var productDetailDiv = $("div.dialog").has(elem);
          
         $('#pws_prod_title').html( productDetailDiv.find('h2').html());
         $("#pws_list_price").html( productDetailDiv.find('#product_price').html());
         
         var quantity = productDetailDiv.find('select[name=amount]').val();
         quantity = (quantity==null? 1 : quantity);
         $('#pws_amt').html( quantity );
        
         $('#pws_prod_id').val( productDetailDiv.find('input[name=productid]').val());
         $("#pws_prod_desc").val($.trim(productDetailDiv.find('div.descr').html()));
         // $('#pws_prod_cat').val(urlArray[urlArray.length-1]);
                  
        updatePrice($("#discount_slider").slider("value"));
        updateExpiration($("#expire_slider").slider("value"));
    }
    
    function registerRetailerEvents(){
 
        $("td.showbidtd").click(function() {
            switchToPanel(0);
            loadRetailerUIValues($(this));
            $('#pws-bid').dialog('open');
        });  
            
        $("#pwsAboutLink").click(function(e){
            e.preventDefault();
            $("#pws-about").dialog('open');
        }) ;
            
    }
