$(function(){

$(".h_top a").each(function(){

	if((location.pathname.substring(location.pathname.lastIndexOf("/") + 1)) == 'contact.html')
	{
		$("#contact").attr("src", "images/tmenu_ocontact.gif");

		}
	else if((location.pathname.substring(location.pathname.lastIndexOf("/") + 1)) == 'donate.html')
	{
		$("#donate").attr("src", "images/tmenu_odonate.gif");

		}
	else if((location.pathname.substring(location.pathname.lastIndexOf("/") + 1)) == 'sponsors.html')
	{
		$("#sponsors").attr("src", "images/tmenu_osponsors.gif");

		}
});


$("#sddm li a").each(function(){

	if($(this).attr("href") == (location.pathname.substring(location.pathname.lastIndexOf("/") + 1)))
	{
		$(this).closest("li").addClass("current");
		}

	});
});
