$(function() {
	$("#commenting").hide();
$("#switcher .box").hover(
  function () {
	$("#switcher .box").css("border", '0');
	$(".allhide").hide().removeClass("hidden"); 
    $(this).css("border-bottom", '6px solid #BEF000');
	var n = $(this).attr("jsget");
	$("."+n).show();
  },
  function () {
  }
);

    $('#torotate').cycle({
        prev:   '.prev',
        next:   '.next',
		speed: 500,
		pause: 1,
		before: onBefore,
		delay: -2000
    });
    function onBefore() {
		$("#highlights ul li").css("border","1px solid white").css("font-weight","normal");
        var n = $(this).children().attr("jsget");
		$("#"+n).css("border","3px solid white").css("font-weight","bold");
    }
});
