$(document).ready(function(){
	// Loop through the navigation menu items and switch this page's image to the _f3 image 
	// First find the current page id
	var pageHref = window.location.pathname.replace(/^.*\/([^\/\?]*)/,"$1");
	//alert("pageHref ="+pageHref);
    $(".nav a").each(function(i) {
    	//alert('this href='+$(this).attr("href"));
		if ($(this).attr("href")==pageHref || 
				($(this).attr("href") == "/" && pageHref=="") ||
				$(this).attr("href").replace(/^\/index\.php\//,"")==pageHref) {
				/*$(this).attr("href").replace(/^.*\/([^\/\?]*)\??.*$/,"$1")==pageHref)*/
			// this is the current page link - deactivate it and set the f3 image
			$(this).removeAttr("href").addClass('selected');
			//var imgSrc = $(this).children("img").attr("src").replace(/.jpg$/,"_f3.jpg");
			//$(this).children("img").attr("src",imgSrc);
		}
	});
	//if (pageHref == "") $("#subbot").empty();
	// Load the latest news
	//$("#latestnews_content").load('/admin/index.php?/news/');
});

