$(document).ready(function(){
	// check to see if the users browser is IE
	// if it is use only 100px for left margin
	// else use 200px
	jQuery.each(jQuery.browser, function(i) {
		if($.browser.msie){
			$("#coming-soon").css({"color":"white",
								   "display":"inline",
								   "position":"absolute",
								   "margin-left":"100px",
								   "background":"#00456a",
								   "padding":"8px",
								   "display":"none"
								   });
		} else {
			$("#coming-soon").css({"color":"white",
								   "display":"inline",
								   "position":"absolute",
								   "margin-left":"200px",
								   "background":"#00456a",
								   "padding":"8px",
								   "display":"none"
								   });
		}
	});
	
	// This is the hover part of the script			   
	$("#n-members").hover(
	function(){
		$("#coming-soon").fadeIn('fast');
	},
	function() {
		$("#coming-soon").fadeOut('fast');
	});
});
