wcube_footer = function() {
  JQ('#footer div.contentList ul li div.links div.footer-nav-1').addClass('collapsed');
  JQ('#footer div.contentList ul li div.links div.footer-nav-1').hover(
    function() { JQ(this).removeClass('collapsed'); },
    function() { JQ(this).addClass('collapsed'); }
  );
}

heightVideosHome = function() {
	var heightBlockMax=0;
	JQ(".videosList .video").each(function(){ if( JQ(this)[0].offsetHeight > heightBlockMax ) heightBlockMax = JQ(this)[0].offsetHeight; }); // get max height
	JQ(".videosList .video").each(function(){ JQ(this).css("height",heightBlockMax + "px"); }); // assign max height
	heightBlockMax=0;
}

if (isJsEnabled()) {
  JQ(document).ready(function(){ wcube_footer(); heightVideosHome(); });
}