// JavaScript Document

// Stock availablity

var hats13Regular = " (5-7days)";
var hats13Mastersound = " (5-7days)";

var hats14Regular = " (5-7 days)";
var hats14Mastersound = " (5-7 days)";


// Stock availablity




function fill_promos(){


/*// Start Promo 
document.getElementById('cymbals_zildjian_custom_12hats_price').innerHTML = "189 "; // Price
document.getElementById('cymbals_zildjian_custom_12hats_image').src = "img/zildjian/a_custom/hats.jpg"; // Image file location
document.getElementById('cymbals_zildjian_custom_12hats_details').innerHTML = ""; // Product details
document.getElementById('cymbals_zildjian_custom_12hats_landing').href = "http://www.romancart.com/cart.asp?storeid=20377&itemcode=cymbals_zildjian_a_custom_hats_12_master&quantity=1"; // Landing page from add to basket within quotes
// End Promo */

// Start Promo 
document.getElementById('cymbals_zildjian_custom_13hats_price').innerHTML = "279 "; // Price
document.getElementById('cymbals_zildjian_custom_13hats_image').src = "img/zildjian_a_custom_hats.jpg"; // Image file location
document.getElementById('cymbals_zildjian_custom_13hats_details').innerHTML = "Featuring the same crisp, rich and colorful sounds associated with the A Custom range, but with a bolder and full-bodied overall sound. The Mastersound model featues the same crisp, rich and colorful sounds associated with the A Custom range, but with a bolder and full-bodied overall sound."; // Product details
document.getElementById('cymbals_zildjian_custom_13hats_landing').href = "http://www.romancart.com/cart.asp?storeid=20377&itemcode=cymbals_zildjian_a_custom_hats_13_mod&quantity=1"; // Landing page from add to basket within quotes
// End Promo 

// Start Promo 
document.getElementById('cymbals_zildjian_custom_14hats_price').innerHTML = "311 "; // Price
document.getElementById('cymbals_zildjian_custom_14hats_image').src = "img/zildjian_a_custom_hats.jpg"; // Image file location
document.getElementById('cymbals_zildjian_custom_14hats_details').innerHTML = "Featuring the same crisp, rich and colorful sounds associated with the A Custom range, but with a bolder and full-bodied overall sound. The Mastersound model featues the same crisp, rich and colorful sounds associated with the A Custom range, but with a bolder and full-bodied overall sound."; // Product details
document.getElementById('cymbals_zildjian_custom_14hats_landing').href = "http://www.romancart.com/cart.asp?storeid=20377&itemcode=cymbals_zildjian_a_custom_hats_14_mod&quantity=1"; // Landing page from add to basket within quotes
// End Promo 

// Start Promo 
document.getElementById('cymbals_zildjian_custom_15hats_price').innerHTML = "339 "; // Price
document.getElementById('cymbals_zildjian_custom_15hats_image').src = "img/zildjian_a_custom_mstr_hats.jpg"; // Image file location
document.getElementById('cymbals_zildjian_custom_15hats_details').innerHTML = "Featues the same crisp, rich and colorful sounds associated with the A Custom range, but with a bolder and full-bodied overall sound."; // Product details
document.getElementById('cymbals_zildjian_custom_15hats_landing').href = "http://www.romancart.com/cart.asp?storeid=20377&itemcode=cymbals_zildjian_a_custom_hats_15_master&quantity=1"; // Landing page from add to basket within quotes
// End Promo 

}


// ********* 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==13){
	document.write("<select id=cymbals_zildjian_custom_13hats_selector><option value=regular>A Custom Regular Hi-Hats"+hats13Regular+"</option><option value=mastersound>A Custom Mastersound Hi-Hats"+hats13Mastersound+"</option></select>");
	}
		if (x==14){
	document.write("<select id=cymbals_zildjian_custom_14hats_selector><option value=regular>A Custom Regular Hi-Hats"+hats14Regular+"</option><option value=mastersound>A Custom Mastersound Hi-Hats"+hats14Mastersound+"</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==13){
	var a = document.getElementById('cymbals_zildjian_custom_13hats_landing').href;
	var b = document.getElementById('cymbals_zildjian_custom_13hats_selector').options[document.getElementById('cymbals_zildjian_custom_13hats_selector').selectedIndex].value;
	window.location = a + "&itemname2=" + b;
	}

	if (x==14){
	var a = document.getElementById('cymbals_zildjian_custom_14hats_landing').href;
	var b = document.getElementById('cymbals_zildjian_custom_14hats_selector').options[document.getElementById('cymbals_zildjian_custom_14hats_selector').selectedIndex].value;
	window.location = a + "&itemname2=" + b;
	}

}

// ********* NEW modifiers coding DO NOT CHANGE ABOVE *********

