/*
 * Jordon's super awesome jQuery script
 * For GLADoS, in the name of science.
 */

$(window).load(function() {
	// Clear title, set ID
	$('#featuredmenu li a').each(function() {
		this.hoverID = $(this).attr('title');
		$(this).attr('title', null);
	});
	
	$('#featuredmenu li a').mouseenter(function() {
		if (this.hoverID) $('#' + this.hoverID).fadeIn('fast');
	}).mouseleave(function() {
		if (this.hoverID) $('#' + this.hoverID).fadeOut('fast');
	});
});
