$(function() {
	$('#header a')
		.bind('mouseover', function() { $(this).hide(); $(this).addClass('hover'); $(this).show(); })
		.bind('mouseout', function() { $(this).removeClass('hover') })
		.bind('focus', function() { $(this).addClass('hover') })
		.bind('blur', function() { $(this).removeClass('hover') });

	$('#nav ul ul').each(function() {
		var $subnav = $(this);
		var $parent = $subnav.parent();
		var activate = function() {
			$subnav.show();
		};
		var deactivate = function() {
			$subnav.hide();
		};

		$subnav.hide();

		$parent
			.bind('mouseover', activate)
			.bind('mouseout', deactivate)
			.bind('focus', activate)
			.bind('blur', deactivate);
	});

	$('#styling #tip_thumbs li a').each(function() {
		var $this = $(this);
		var $video = $('#tips #tip_video');

		$this.bind('click', function() {
			$video.fadeOut('fast', function() {
				$video
					.html('')
					.load($this.attr('href') + ' #vid', function() {
						$video.fadeIn('slow')
					});
			});

			return false;
		});
	});

});