jQuery.noConflict();
jQuery(document).ready(function($){
	if (!$.cookie("authpg")){
	//if ($.cookie("authpg")){
		$(".authbg").height($(document).height() + 100);
		//enter click event
		$("#enter").bind("click", function(){
			$.cookie('authpg', '1', { expires: 1 });
			$("#auth").fadeOut("normal");
			$(".authbg").fadeOut("normal");	
			return false;
		});
	} else {
		$("#auth").hide();
		$(".authbg").hide();			
	}
});

