/**
 * @author George Bobak
 * @copyright 2010
 * ubercart - shipping by payment methode
 * development version
 */

$(function() {
  $('#quotes-pane').remove();
  //alert($('#edit-panes-payment-current-total').val());
  $cur_total=$('#edit-panes-payment-current-total').val();
  //$('#edit-panes-payment-payment-method-bank-transfer').click(function() {
    
    
if ($('#payment-pane').length>0) {
      //var label = $(this).parent().text();
     if($cur_total<=25000){
        var i = "flatrate_1---0";
        var id= "flatrate-1---0";
        //alert(i);
        set_line_item("shipping", "Szállítási költség", "990", 1, 1);
   
   }else{
        //alert($cur_total);
        var i = "flatrate_2---0";
        var id= "flatrate-2---0";
        set_line_item("shipping", "Ingyenes szállítás", "0", 1, 1);
    }
      //set_line_item("shipping", "Szállítás előre utalással", "700", 1, 1);
      if(!($('#edit-quote-option-'+id).length>0)){
        
      if($cur_total<=25000){
        $('#edit-quote-option-flatrate-2---0').remove();
         
    }else{
        $('#edit-quote-option-flatrate-1---0').remove();
    }
        

        /*if($cur_total<20000){
            $('#edit-quote-option-flatrate-1---0').remove();
        }else{
            $('#edit-quote-option-flatrate-6---0').remove();    
        }*/
        //alert('i:'+i);
        $('#payment-pane').prepend('<input id="edit-quote-option-'+id+'" name="quote-option" value="'+i+'" type="hidden">');
      }
      
      
    //}
    /*var c= serializeOrder();
      $('edit-cart-contents').val(c);*/
  //}).filter(':checked').click();
 }
  
});



