$(document).ready(function() {
	/* Dropdown Menus */
	$('ul.dropdown').each(function (i) {								
		navRoot = $(this);
		navRoot.children().each(function (j){
				$(this).find('ul').parent().addClass("parent");
				$(this).find("a[href='"+getActive()+"']").each(function(){
					$(this).parents('li').addClass("active");
				})	
				$(this).mouseover(function() {
					$(this).addClass('over');
 				});
				$(this).mouseout(function() {
					$(this).removeClass('over');
 				});
 		 });
	});
});

function getActive() {
    loc = window.location;
    return loc.href.substring(loc.href.lastIndexOf('/') + 1);
}

