$(function(){
  $('h3.buy').live('click', function(){
    $(this).toggleClass('closed');
    $('#quick-buy').toggle();
  });

  
//  var options = { target: '#quick', replaceTarget: true };
//  
////  $('#quickForm').live('submit', function(){
////	  	$(this).ajaxSubmit(options);
////	  	return false;
////  });
////
////  $('#quickForm input').live('change', function(){
////	  $(this).closest('form').ajaxSubmit(options);
////  });
//  
////  $('input.number').live('keypress', function(e){
////	  if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57))
////	  {
////	    return false;
////	  }
////	});
//  $('input.number').spinner('destroy');
//  $('input.number').spinner({max: 100, min: 0, stepping: 1});
//  $('input.number').bind('spinchange', function(event, ui){
//	  $(this).closest('form').ajaxSubmit(options);
//  });
//;

  /*
  if($.browser.msie) {
	    $("input, select").click(function() {
	        $(this).change();
	    });
	    $("input, textarea").keyup(function() {
	        $(this).change();
	    });
	}
	*/

  
});
