//	LOCATOR JS
/////////////////////////////////

//	Set tabs up utilizing CLASS instead of ID for multiple tabs per page

$(document).ready(function(){
	$("div.tabBox")
		.each(function(){
			$(this).show().children("ul").tabs();
		});

});
