//scripts
var selectedColor = "#333";//"#5399dd";

function navloader() {

//DVD
	if (location.href.indexOf('sniffthemovie.com/dvd') != -1) {
		document.getElementById("dvd").style.backgroundColor=selectedColor;
//Trailers
	} else if (location.href.indexOf('/search/label/clips') != -1) {
		document.getElementById("clips").style.backgroundColor=selectedColor;
//Screenings
	} else if (location.href.indexOf('/search/label/screenings') != -1) {
		document.getElementById("screenings").style.backgroundColor=selectedColor;
//Reviews
	} else if (location.href.indexOf('/search/label/reviews') != -1) {
		document.getElementById("reviews").style.backgroundColor=selectedColor;
//Affiliates
	} else if (location.href.indexOf('/search/label/affiliate') != -1) {
		document.getElementById("affiliate").style.backgroundColor=selectedColor;
//Contact
	} else if (location.href.indexOf('sniffthemovie.com/contact') != -1) {
		document.getElementById("contact").style.backgroundColor=selectedColor;


//About
	} else if (location.href.indexOf('/search/label/about') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("about").style.backgroundColor=selectedColor;
//About > Synopsis
	} else if (location.href.indexOf('/search/label/synopsis') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("synopsis").style.backgroundColor=selectedColor;
//About > Production Notes
	} else if (location.href.indexOf('/search/label/production') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("production").style.backgroundColor=selectedColor;
//About > Diary
	} else if (location.href.indexOf('/search/label/diary') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("diary").style.backgroundColor=selectedColor;
//About > Team
	} else if (location.href.indexOf('/search/label/team') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("team").style.backgroundColor=selectedColor;

//About > Snapshots
	} else if (location.href.indexOf('/search/label/snapshots') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("snapshots").style.backgroundColor=selectedColor;
		





	}
}


