// JavaScript Document
<!--

// Stock availablity

var ride20Regular = "(5-7 days)";
var ride20Rock = "(IN STOCK)";



// Stock availablity

function fill_promos(){

// Start Promo left 1
document.getElementById('cymbals_sabian_b8_20ride_price').innerHTML = "94 "; // Price
document.getElementById('cymbals_sabian_b8_20ride_image').src = "img/sabian_b8_ride.jpg"; // Image file location
document.getElementById('cymbals_sabian_b8_20ride_details').innerHTML = "<br><b>Medium</b> Crisp stick definition, cutting bell, and bright tonal response create a versatile ride.<br><br><b>Rock</b> Clean and solid sticking with a crisp, solid bell, for total clarity at all volumes."; // Product details
document.getElementById('cymbals_sabian_b8_20ride_landing').href = "http://www.romancart.com/cart.asp?storeid=20377&itemcode=cymbals_sabian_b8_ride_20_mod&quantity=1"; // Landing page from add to basket within quotes
// End Promo left 1



}

// ********* NEW modifiers coding DO NOT CHANGE BELOW *********

function renderDrop(x){ // this is where all the modifier selections are rendered into the HTML - see me if you need to change any of these modifiers in romancart
	if (x==20){
	document.write("<select id=cymbals_sabian_b8_20ride_selector><option value=regular>B8 Regular Ride "+ride20Regular+"</option><option value=rock>B8 Rock Ride "+ride20Rock+"</option></select>");
	}

}

function sendMod(x){ // this is what sends the modifiers to romancart - see me if you need to add or remove any cymbals from this range
	if (x==20){
	var a = document.getElementById('cymbals_sabian_b8_20ride_landing').href;
	var b = document.getElementById('cymbals_sabian_b8_20ride_selector').options[document.getElementById('cymbals_sabian_b8_20ride_selector').selectedIndex].value;
	window.location = a + "&itemname2=" + b;
	}

}

// ********* NEW modifiers coding DO NOT CHANGE ABOVE *********



//-->

