$(document).ready(function() {
	$('#slideshow').cycle({
		speed:    500,
		timeout: 4000,
		pause:      1
	});

	$("li.menu > a, li.menu > span").mouseenter(function() {$(this).parent().children("ul").slideDown("fast");});

	$("li.menu").mouseleave(function() {$(this).children("ul").fadeOut("fast");});

	$("li.menu > ul > li").hover(
		function() {$(this).children("ul").show();},
		function() {$(this).children("ul").hide();}
	);

	/*** PRO PROFILE JAVSCRIPT ***/
	$('div#bio').hide();
	$('div#video').hide();

	$(".stats.switch").addClass("current");

	$("a.switch").click(function() {
		var containerID = $(this).attr('class').split(' ').slice(0);
		$("a.switch.current").removeClass("current");
		$(this).addClass("current");
		$("div.container:visible").fadeOut("fast", function() {
			$(this).removeClass("current");
			$("#" + containerID).addClass("current");
			$("#" + containerID).fadeIn("fast");
		});
		return false;
	});
});