$(document).ready(function() {
	active_li();
});

function active_li() {
	// pretty ugly
	url = document.location.pathname.substring(1)
	if(url == "") {
		$("#li_home").attr("class", "active");
	}
	if(url == "articole") {
		$("#li_articles").attr("class", "active");
	}
	if(url == "despre-mine") {
		$("#li_about").attr("class", "active");
	}
	if(url == "proiecte") {
		$("#li_projects").attr("class", "active");
	}
	if(url == "contact") {
		$("#li_contact").attr("class", "active");
	}
}
