exploreHover = function() {
	var li = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<li.length; i++) {
		li[i].onmouseover=function() {
			this.className+=" over";
		}
		li[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", exploreHover);

/* Resizing the video */

var $j = jQuery.noConflict();

$j(document).ready(function () {
    $j('object').css({width:'175px',height:'178px'});
	$j('embed').css({width:'175px',height:'178px'});
})
