function setClass() {
if (document.getElementById) {
	if (window.location.href.indexOf('upload.php') != -1) {
		document.getElementById('upload_link').style.background = "#ccc";
		document.getElementById('upload_link').style.color = "#000";  
		document.getElementById('upload_link').style.borderRight = "1px solid #999";
		document.getElementById('subtitle').innerHTML = ": Upload File";
	}
	if (window.location.href.indexOf('gallery/index.php?cat=0') != -1) {
		document.getElementById('album_link').style.background = "#ccc";
		document.getElementById('album_link').style.color = "#000";  
		document.getElementById('album_link').style.borderRight = "1px solid #999";
		document.getElementById('subtitle').innerHTML = ": Album List";
	}
	if (window.location.href.indexOf('gallery/thumbnails.php?album=lastup&cat=0') != -1) {
		document.getElementById('lastup_link').style.background = "#ccc";
		document.getElementById('lastup_link').style.color = "#000";  
		document.getElementById('lastup_link').style.borderRight = "1px solid #999";
		document.getElementById('subtitle').innerHTML = ": Last Uploads";
	}
	if (window.location.href.indexOf('/gallery/thumbnails.php?album=lastcom&cat=0') != -1) {
		document.getElementById('lastcomm_link').style.background = "#ccc";
		document.getElementById('lastcomm_link').style.color = "#000";  
		document.getElementById('lastcomm_link').style.borderRight = "1px solid #999";
		document.getElementById('subtitle').innerHTML = ": Last Comments";
	}
	if (window.location.href.indexOf('gallery/thumbnails.php?album=topn&cat=0') != -1) {
		document.getElementById('most_link').style.background = "#ccc";
		document.getElementById('most_link').style.color = "#000";  
		document.getElementById('most_link').style.borderRight = "1px solid #999";
		document.getElementById('subtitle').innerHTML = ": Most Viewed";
	}
	if (window.location.href.indexOf('gallery/thumbnails.php?album=toprated&cat=0') != -1) {
		document.getElementById('top_link').style.background = "#ccc";
		document.getElementById('top_link').style.color = "#000";  
		document.getElementById('top_link').style.borderRight = "1px solid #999";
		document.getElementById('subtitle').innerHTML = ": Top Rated";
	}
	if (window.location.href.indexOf('gallery/thumbnails.php?album=favpics') != -1) {
		document.getElementById('fav_link').style.background = "#ccc";
		document.getElementById('fav_link').style.color = "#000";  
		document.getElementById('fav_link').style.borderRight = "1px solid #999";
		document.getElementById('subtitle').innerHTML = ": My Favorites";
	}
	
}
}
window.onload=setClass;