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;
	});
	if (jq(".webform-client-form").length){
		jq(".form-textarea, .form-text").focus(function(event) {
			if(!jq(this).is('[readonly]')){
				jq(this).val("");
			}
			jq(this).unbind(event);
		});
	}
});
