﻿/* MUST INCLUDE JQUERY LIBRARY */
$(document).ready(function() {
	$('div.button,#breadcrumbs,#loginuserinfo').each(function(i, e) {
		$(e).append('<span class="lcap"></span><span class="rcap"></span>');
	});
	var href = window.location.href+'';
	$('a').each(function(i, e) {
		if(href == e.href) {
			$(e).addClass('active');
		}
	});
	//if($('.alert')) { setTimeout(function(){ $('.alert').hide(500);}, 10000); }
});

