jQuery.noConflict();

jQuery(function() { 
	jQuery('#top-links .hotline').click(function() {
		jQuery('#hotline').fadeIn();
		return false;
	});
	
	jQuery('#hotline .close').click(function() {
		jQuery('#hotline').fadeOut();
		return false;
	});	

	jQuery('#ft-sub-email').focus(function() {
		if(jQuery(this).val() == 'Type email address') {
			jQuery(this).val('');
		}
		jQuery(this).addClass('focus');
	}).blur(function() {
		if(jQuery(this).val() == '') {
			jQuery(this).val('Type email address');
			jQuery(this).removeClass('focus');
		}
	});
	
	
	jQuery('#nav > ul > li').has('ul').hover(function() {
		jQuery(this).addClass('on');
	}, function() {
		jQuery(this).removeClass('on');
	});
	

});

function showOverlay() {
	var width = jQuery('html').width();
	var height = jQuery('html').height();
	var b = "<div id='black-background' style='background-color: #000; opacity: 0.8; width:"+width+"px; height:"+height+"px;position:absolute;top:0;left:0;z-index:149;'></div>";
	jQuery('body').append(b);
}

function hideOverlay() {
	jQuery('#black-background').fadeOut('slow', function() {
		jQuery(this).remove();
	});
}


