jq = jQuery.noConflict();

// case study selector
jq(document).ready(function() {
	jq(".case-study-finder select").change(function() {
		var url = jq(this).val();
		window.location.href = url;
	});
});