$(document).ready(function(){
	// -- stock display from option drop downs
	$('select#optionbox').change(function() {
		var option_values = $(this).children('option:selected').attr('title');

		// -- split the values into price and stock
		var arrValues = option_values.split(' / ');

		// -- update the price and remove 'Price: '
		arrValues[0] = arrValues[0].substring(7);
		$('h3#price').html(arrValues[0]);

		// -- update the stock level and remove 'Stock: '
		arrValues[1] = arrValues[1].substring(7);
		$('h3#stock').html(arrValues[1] + ' items');

	});
});

