//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('/blog/labels/clips.html') != -1) {
		document.getElementById("clips").style.backgroundColor=selectedColor;
//Screenings
	} else if (location.href.indexOf('/blog/labels/screenings.html') != -1) {
		document.getElementById("screenings").style.backgroundColor=selectedColor;
//Reviews
	} else if (location.href.indexOf('/blog/labels/reviews.html') != -1) {
		document.getElementById("reviews").style.backgroundColor=selectedColor;
//Affiliates
	} else if (location.href.indexOf('/blog/labels/affiliate.html') != -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('/blog/labels/about.html') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("about").style.backgroundColor=selectedColor;
//About > Synopsis
	} else if (location.href.indexOf('/blog/labels/synopsis.html') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("synopsis").style.backgroundColor=selectedColor;
//About > Production Notes
	} else if (location.href.indexOf('/blog/labels/production.html') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("production").style.backgroundColor=selectedColor;
//About > Diary
	} else if (location.href.indexOf('/blog/labels/diary.html') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("diary").style.backgroundColor=selectedColor;
//About > Team
	} else if (location.href.indexOf('/blog/labels/team.html') != -1) {
		document.getElementById("about_menu").style.display="block";
		document.getElementById("team").style.backgroundColor=selectedColor;

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





	}
}

