$(document).ready(function(){
  
  $('.lbox').lightBox();
  
  $('#bx_slider').bxSlider({
    auto: true,
    pager: true,
    speed: 750,
    pause: 4000
  });

  $('#calculate_price').bind('click', function(){
    $('#worked_out_price').load('/shop/canvas-price/',  $('#canvas_size_form').serialize() );
    return false; 
  });


  // field stuff.
  $('input, textarea').bind('focus', function(){ $(this).addClass('focused'); });
  $('input, textarea').bind('blur', function(){ $(this).removeClass('focused'); });  
  
});
