$(document).ready(function() {
	if (document.title != "The Rocket Summer Official Website :: Extras") {
		$('#nav li.navExtras').hover(function () {
			$(this).find('ul').show();
		},
			function() {
				$(this).find('ul').hide();
			}		
		);
	}
});