function CurrPage() {

var curlink = location.href;

	if(curlink == "http://www.renovideopros.com/") {	// default for landing page
	document.getElementById("index").className='current';	
	}
	if(curlink.indexOf("index") > -1) {	// check for instance of "index"
	document.getElementById("index").className='current';	
	}
	if(curlink.indexOf("projects") > -1) {	// check for instance of "projects"
	document.getElementById("projects").className='current';	
	}
	if(curlink.indexOf("production") > -1) {	// check for instance of "production"
	document.getElementById("production").className='current';	
	}
	if(curlink.indexOf("personnel") > -1) {	// check for instance of "personnel"
	document.getElementById("personnel").className='current';	
	}
	if(curlink.indexOf("testimonials") > -1) {	// check for instance of "testimonials"
	document.getElementById("testimonials").className='current';	
	}

	if(curlink.indexOf("galleries") > -1) {	// check for instance of "galleries"
	document.getElementById("galleries").className='current';
	document.getElementById("showGroup").style.display='block';
	document.getElementById("showGroup2").style.display='block';
	document.getElementById("quotes").style.display='none';
	document.getElementById("MovieFrame").src=''
	}

	if(curlink.indexOf("contact") > -1) {	// check for instance of "contact"
	document.getElementById("contact").className='current';	
	}




//document.getElementById('MovieFrame').src = 'images/notloading.jpg';

}

	
	

