//  menu active style
$(document).ready(function () {
   $('#menu li a').each(function(){
		var location = window.location;
		var href=location.href;
		if (this.href.toLowerCase() == href.toLowerCase()) {
			$(this).addClass('active'); 
			return false
		};
	});
 });
//  video nav active style
$(document).ready(function () {
   $('#video-nav li a').each(function(){
		var location = window.location;
		var href=location.href;
		if (this.href.toLowerCase() == href.toLowerCase()) {
			$(this).addClass('active'); 
			return false
		};
	});
 });
 