$(function(){
	$(".cubex").width(Math.round($(".cubex").parent().width() /$(".cubex").length)).children(".cubeHidden").hide();
	$(".cubex").mouseenter(function(){
	if($.an)$(this).animate({ top: "38px" }, 120 ).next().animate({ top: "38px" }, 120 ).prev().children(".cubeHidden").show();
	}).mouseleave(function(){
		if($.an)$(this).animate({ top: "138px" }, 170 ).next().animate({ top: "138px" }, 170 ).prev().children(".cubeHidden").hide();
	   }).click(function(){
		   var url=$(this).children().children("a").attr("href");
		  window.location=url;
		   }).each(function(e){
			   var lef=$(this).width()*(e);
			  $(this).css("left",lef).after('<div style="left:'+lef+'px;width:'+$(this).width()+'px" class="cubeBase cubeBg" >&nbsp;</div>');
			   }).css({"cursor":"pointer","zIndex":"10","borderLeft":"1px solid #fff"});
	$(".cubex:first").css("border","none");
	$(".cubeBg").css("opacity",0.7);
		  });
//RIGHT MENU
$(function(){
		$("#RightMenu div").mouseenter(function(){$(this).addClass("pageOnX");}).mouseleave(function(){$(this).removeClass("pageOnX");}).click(function(){
		 var url=$(this).children("a").attr("href");window.location=url;});   
		if($("#RightMenu .secondLevel").length>0) $(".bold").addClass("arDwn");
	 });
