$(function() {
  $('#group').tabs().tabs('rotate', 5000, true);
  $('#highlights').tabs({
        fx: {
            opacity: 'toggle',
            duration: 'slow'
        }
    }).tabs('rotate', 7000, true);
    
  /* MENU */
  $('.subnav').each(function () {
		$(this).parent().parent().eq(0).hoverIntent({
			timeout: 100,
			over: function () {
				$('.subnav', this).slideDown('fast');
			},
			out: function () {
        $('.subnav', this).slideUp('fast');
			}
		});
	});
	
	/**/

	$('.select-type :radio').bind('click', function(event) {
		$('#' + $(this).val()).show();
		$(this).siblings().each(function(index) {
		  $('#' + $(this).val()).hide();
		});
	});
	
	var current_metadata = $('.select-type :radio:checked').val();
	$('.metadata').hide();
  $('#' + current_metadata).show();
	
});
