var url = window.location.href;
var start = url.lastIndexOf("/");
var end = url.lastIndexOf(".");
var productcode = url.substring(start+1,end);
productcode = productcode.toUpperCase();

$(document).ready(function(){
	$('<div id="notification">To customize this product, please have a quantity of 24 or more in the QTY field below.</div>').insertAfter('#options_table');
	
	$('#options_table').hide();

	$('input[name="QTY.'+productcode+'"]').change(function(){
		if($('input[name="QTY.'+productcode+'"]').val() > 23){
			$('#options_table').show();
			$('#notification').hide();
		}else{
			$('#options_table').hide();
			$('#notification').show();
			
			$('select[name="SELECT___'+productcode+'___23"]').val("97");
			$('select[name="SELECT___'+productcode+'___23"]').change();
		}
	});

});
