$(function() {
    $("#gosubmit").hide();
	$("#state_select_container li").click(function(){
	     window.location.href = "https://"+window.location.hostname+"/order?state="+$(this).attr('id').substr(19,2).toLowerCase();
	 	//window.location.href = "http://gatorworks.biz/~voxbox/order?state="+$(this).attr('id').substr(19,2).toLowerCase();
	})
});

$(document).ready(function() {
	$('#csc_click').toggle(function(e){
	    e.preventDefault();
	    $('#csc_explanation').show();
	}, function(e){
	    e.preventDefault();
	    $('#csc_explanation').hide();
	});
});