var topvideosstate = 0;
function toggletopvideos(topvideos) {
	if (topvideos === 0) {
		$("#popular").show();
		$("#newest").hide();
	} else if (topvideos === 1) {
		$("#newest").show();
		$("#popular").hide();
	}
	if (topvideos !== topvideosstate) {
		topvideosstate = topvideos;
		$('.rlink').toggleClass('rcurrent');
	}
}

function togglecopyright() {
	$("#showcopyright").toggle();
	$("#hidecopyright").toggle();
	$("#copyrightp").slideToggle("slow");
}

$(document).ready(function() {
	$('#box').focus();
});