(function ($) {
	$(function () {
		var comingSoonLinks = $('#secondaryContent ul li.comingSoon');
		$('div', comingSoonLinks).each(function (i) {
			$(this).append($('<span class="hint">' + ($(this).attr('title') ? $(this).attr('title'):"Coming Soon!" ) + '</span>'));
			$(this).attr({'title':''});
		});
		$('span.hint', comingSoonLinks)
			.hide()
			.prepend($('<span class="arrow"><span class="top"></span><span class="bottom"></span></span>'));
		$('a, div', comingSoonLinks).bind('mouseover', function () {
			var holder = $(this);
			if(this.tagName == 'A') {
				holder = $(this).next('div');
			}
			$('span.hint', holder).fadeIn(250);
		});
		$('a, div', comingSoonLinks).bind('mouseout', function () {
			var holder = $(this);
			if(this.tagName == 'A') {
				holder = $(this).next('div');
			}
			$('span.hint', holder).fadeOut(250);
		});
	});
})(jQuery);
