$(document).ready(function() {
	$(".home-page-scrollable").scrollable({circular: true, interval:7000 }).autoscroll({ autoplay: true });
	$(".bms-colorbox").colorbox();
	$("#column .subnav a").each(function() {
		var my_loc = window.location;
		var my_href = $(this).attr('href');
		if (my_loc == my_href) {$(this).parent('li').addClass('active');}
	});
	var found_nav_item = false;
	$("#topnav a").each(function() {
		var my_loc = window.location;
		var my_href = $(this).attr('href');
		if (my_loc == my_href) {
			$(this).parents('li').addClass('active');
			found_nav_item = true;
		}
	});
	if (found_nav_item == false) {
		$("#topnav a").each(function(index) {
			if (index == 0) $(this).parents('li').addClass('active');
		});
	}
});
