if(typeof jQuery != 'undefined') {
	$(document).ready(function()
	{
		$("#insights_industry_combo").change(function(){
			if($(this).val() != '') {
				var selectedText = $("#insights_industry_combo option:selected").text();
				$("#insights_industry_value").html(selectedText);
				var url = window.location.hostname + "/" + $(this).val();
				window.location.href = "http://" + url;
			}
		});
		
		$("#insights_service_combo").change(function(){
			if($(this).val() != '') {
				var selectedText = $("#insights_service_combo option:selected").text();
				$("#insights_service_value").html(selectedText);
				var url = window.location.hostname + "/" + $(this).val();
				window.location.href = "http://" + url;
			}
		});
	});
}
