jQuery(document).ready(function($) {
	$('#menuul').children('li').each(function() {
		$(this).mouseover(function() {
			$('.current_page_item').children('a:first').removeClass('hover');
			$('.current_page_item').children('ul:first').hide();
			$(this).children('ul').show();
			$(this).children('a:first').addClass('hover');
		});
		$(this).mouseout(function() {
			$(this).children('ul').hide();
			$(this).children('a:first').removeClass('hover');
			$('.current_page_item').children('a:first').addClass('hover');
			$('.current_page_item').children('ul:first').show();
		});
	});
	$('#rotating').cycle({
		timeout: 4000
	});
	$('#featured-video .tabs a').not('.more').click(function() {
		$('#featured-video .tabs li.selected').removeClass('selected');
		$(this).parents('li').addClass('selected');
		var num = $(this).html();
		$('#featured-video .videowid').hide();
		$('#featured-video .videowid'+num).show();
		return false;
	});
});