// JavaScript Document
<!--

// Stock availablity

var splash8splash = "(IN STOCK)";
var splash8china = "(5-7 days)";

var splash10splash = "(IN STOCK)";
var splash10china = "(5-7days)";

var splash12splash = "(IN STOCK)";

// Stock availablity

function fill_promos(){


document.getElementById('cymbals_meinl_classics_8slash_price').innerHTML = "39 "; // Price
document.getElementById('cymbals_meinl_classics_8slash_image').src = "img/meinl_cymbals/cymbals_meinl_classics_splash.jpg"; // Image file location
document.getElementById('cymbals_meinl_classics_8slash_details').innerHTML = "Very fast attack and sharp, penetrating cut. Very bright, clear sound."; // Product details
document.getElementById('cymbals_meinl_classics_8slash_landing').href = "http://www.romancart.com/cart.asp?storeid=20377&itemcode=cymbals_meinl_classics_slash_8_mod&quantity=1"; // Landing page from add to basket within quotes
// End Promo left 1

// Start Promo middle 2

document.getElementById('cymbals_meinl_classics_10slash_price').innerHTML = "42 "; // Price
document.getElementById('cymbals_meinl_classics_10slash_image').src = "img/meinl_cymbals/cymbals_meinl_classics_splash.jpg"; // Image file location
document.getElementById('cymbals_meinl_classics_10slash_details').innerHTML = "Very fast attack and sharp, penetrating cut. Very bright, clear sound."; // Product details
document.getElementById('cymbals_meinl_classics_10slash_landing').href = "http://www.romancart.com/cart.asp?storeid=20377&itemcode=cymbals_meinl_classics_slash_10_mod&quantity=1"; // Landing page from add to basket within quotes
// End Promo middle 2

// Start Promo right 3

document.getElementById('cymbals_meinl_classics_12slash_price').innerHTML = "53 "; // Price
document.getElementById('cymbals_meinl_classics_12slash_image').src = "img/meinl_cymbals/cymbals_meinl_classics_splash.jpg"; // Image file location
document.getElementById('cymbals_meinl_classics_12slash_details').innerHTML = "Very fast attack and sharp, penetrating cut. Very bright, clear sound."; // Product details
document.getElementById('cymbals_meinl_classics_12slash_landing').href = "http://www.romancart.com/cart.asp?storeid=20377&itemcode=cymbals_meinl_classics_slash_12_mod&quantity=1"; // Landing page from add to basket within quotes
// End Promo right 3


}

// ********* 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==8){
	document.write("<select id=cymbals_meinl_classics_8slash_selector><option value=splash>Classics Splash "+splash8splash+"</option><option value=china>Classics China Splash "+splash8china+"</option></select>");
	}
	if (x==10){
	document.write("<select id=cymbals_meinl_classics_10slash_selector><option value=splash>Classics Splash "+splash10splash+"</option><option value=china>Classics China Splash "+splash10china+"</option></select>");
	}
	if (x==12){
	document.write("<select id=cymbals_meinl_classics_12slash_selector><option value=splash>Classics Splash "+splash8splash+"</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==8){
	var a = document.getElementById('cymbals_meinl_classics_8slash_landing').href;
	var b = document.getElementById('cymbals_meinl_classics_8slash_selector').options[document.getElementById('cymbals_meinl_classics_8slash_selector').selectedIndex].value;
	window.location = a + "&itemname2=" + b;
	}
		if (x==10){
	var a = document.getElementById('cymbals_meinl_classics_10slash_landing').href;
	var b = document.getElementById('cymbals_meinl_classics_10slash_selector').options[document.getElementById('cymbals_meinl_classics_10slash_selector').selectedIndex].value;
	window.location = a + "&itemname2=" + b;
	}
		if (x==12){
	var a = document.getElementById('cymbals_meinl_classics_12slash_landing').href;
	var b = document.getElementById('cymbals_meinl_classics_12slash_selector').options[document.getElementById('cymbals_meinl_classics_12slash_selector').selectedIndex].value;
	window.location = a + "&itemname2=" + b;
	}

}

// ********* NEW modifiers coding DO NOT CHANGE ABOVE *********

//-->

