(function($) {$.fn.navr = function(){
		var locarray = (location.pathname).split("/");
		var loc = locarray[locarray.length - 1];
		$(this).find('a').each(function() {
			if ($(this).attr('href') == loc){
				$(this).addClass('current');
			} else {
				$(this).addClass('notcurrent');
			}
			if ($(this).attr('href') == 'index.html' && loc == ""){
				$(this).addClass('current');
				$(this).removeClass('notcurrent');
			}
			$(this).bind('mouseover', btnhi).bind('mouseout', btnlo);
		});
		//if (tloc == "index.php" && loc == ""){
			//	$(this).parent().find('*').addClass('current');
			//}
		function btnhi(){
			if (!$(this).hasClass('current')){
				$(this).stop().animate({backgroundPosition : '(0 -27)'}, {duration:200});
			}
		}
		function btnlo(){
			if (!$(this).hasClass('current')){
				$(this).stop().animate({backgroundPosition : '(0 0)'}, {duration:200});
			}
		}
		/*
		*/
	};
})(jQuery);
