jQuery.noConflict();
jQuery(document).ready(function($){

	if (!$.cookie("authcookie")){
		$("#main").hide();			
		$("#enter").bind("click", function(){
			$.cookie('authcookie', '1', { expires: 1 });
			$("#main").show();			
			if ($.browser.msie && $.browser.version < 8 ){
				$("#back-shade").hide();	
			} else {
				$("#back-shade").fadeOut("normal");	
			}
			return false;
		});
	} else {
		$("#back-shade").hide();			
	}
});
