﻿$(function () { 
  $('img.back').click(function () {
    window.history.back();
  });
  $('li.print').click(function () {
    window.print();
  });
  
  // catalogue category pages   
  $('td > div.product div.add2cart').click(function () {
    $('form', this).submit();
  });
  
  
  //product pages  
  if ($('#itemQuantity')[0]) {
    var qty = $('#itemQuantity'), price = $('td.price'), subCalc = function () {
      setTimeout(function () {
        var total = "$" + parseFloat( price.text().replace('$','') ) * parseInt( qty.val() );
        total = total.indexOf(".") == -1 ? total + ".00" : total;
        $('td.sub').text( $.boss.formatCurrency( total.indexOf("NaN") > -1 ? "$0.00" : total ) );
        subCalc();
      }, 500);
    };
     subCalc();
     
   $('img.add2cart').click(function () {
     $('#BossProductForm').submit();
   });    
  }
  
  $('div.view-large').click(function () {
    tb_show("", $('a', $(this).prev()).attr('href'));
  });

});