﻿/// <reference path="/Scripts/jquery.intellisense.js"/>
/* Script is shared and used to display sectors within Government or Education. */

$(document).ready(function () {
	if ($("#ChildPanels li").length > 0) {
		initChildPanels();
	}
});

var initChildPanels = function () {
	$("#ChildPanels li").each(function () {
		var link = $(this).find("a");
		if (link.length) {
			$(this).click(function () {
				window.location.href = link[0].href;
			});
		}
	});
}
