$(function()
{
    $("#product").mcDropdown("#product_menu", {minRows: 300, targetColumnSize: 1, valueAttr: "class" });

    $('#product_menu ul li, .mcdropdown_autocomplete li').live("click", function()
    {
      product = $('#product').val();
      $('#instant_quote_img').hide();
      $('#loading_image_live').show();
      $('#instant_quote_price').text('');
      $.get("http://www.thedesignmechanics.com/includes/instant_price.php", {p: product, t: 'qty'}, function(data)
      {
        $('#instant_quote_price').show();
        $('#first_live_quantity').remove();
        $('#qty').html(data);
        $('#loading_image_live').hide();
        recalc();
      });
    });
       
    function recalc()
    {
		qty = $('#qty').val();
                $('#instant_quote_img').hide();
                $('#instant_quote_price').hide();
		$('#loading_image_live').show();
		product = $('#product').val();
		$.get("http://www.thedesignmechanics.com/includes/instant_price.php", {p: product, q: qty}, function(data)
		{
                        $('#instant_quote_price').show();
			$('#instant_quote_price').html(data);
			$('#loading_image_live').hide();
		});
    }

    $('#qty').change(function()
	{
		recalc();
    });
});