var $ = jQuery.noConflict();
$(function()
{
    $("#product").mcDropdown("#product_menu", {minRows: 300, targetColumnSize: 1, valueAttr: "class", select: function (){live_quote()} });

	function live_quote()
	{
      product = $('#product').val();
      $('#instant-quote h2').hide();
      $('#loading_image_live').show();
      $('#instant_quote_price').text('');
      $.Tache.Get
      ({
			url: "http://www.thedesignmechanics.com/inc/instant_price.php",
			data:'p='+product+'&t=qty',
			success: 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 h2').hide();
		$('#instant_quote_price').hide();
		$('#loading_image_live').show();
		product = $('#product').val();
		$.Tache.Get
		({
			url: "http://www.thedesignmechanics.com/inc/instant_price.php",
			data: 'p='+product+'&q='+qty,
			success: function(data)
			{
				$('#instant_quote_price').show().html(data);
				$('#loading_image_live').hide();
			}
		});
    }

    $('#qty').change(function()
	{
		recalc();
    });
});
