// JavaScript Document

//Function to display options inventory and weight when radio button is pressed
function ShowOptionDetails (qty,weight) {
		if(qty == 0) {
			document.getElementById('option_weight').innerHTML = "";
			document.getElementById('current_options_inventory').innerHTML = "<b>Currently out of stock</b>";
		}
		else {
			document.getElementById('option_weight').innerHTML = "<b>Weight: "+weight+" Lbs.</b>";
			document.getElementById('current_options_inventory').innerHTML = "<b>In stock: "+qty+" item(s)</b>";
		}
		return true;
}
	
function venue_image_fadeout(div, delay, duration){
        new Effect.Fade($(div), {delay:delay, duration:duration, from:1.0, to:0.0});
}