$(document).ready(function() {

$("a.get-quote").each(function(intIndex) {

	$(this).click(function() {
		//alert(intIndex);
		$("select#stock option").each(function(stockIndex) {
			if (stockIndex == intIndex) {
				$(this).attr("selected", "selected");
			}
		});
	});
	
});


$("a#button-ordernow").click(function() {

	$("div#orderpanel").show(function() {window.location = $("a#button-ordernow").attr('href');} );
	
	
});

$("a#button-print").click(function () {

	print();
	
});

$("input").focus(function () {
	$(this).removeClass("err");
})


$("fieldset#billing-address").hide();

$("input#reveal-billing").bind(($.browser.msie ? "propertychange" : "change"), function() {

	if (!$(this).is(':checked')) {
		$("fieldset#billing-address").slideDown();
	}
	else {
		$("fieldset#billing-address").slideUp();
	}
	
});


	if (!$("input#reveal-billing").is(':checked')) {
		$("fieldset#billing-address").show();
	}
	else {
		$("fieldset#billing-address").hide();
	}



});


