function Fade_In(){
	$('#wrapper').fadeIn('def');
}
function Fade_Box(){
	$('div#wrapper').fadeIn('def', function(){ $('div#img_box').fadeIn('def');} );
}

function Clip_In(){
	$("#form_box").addClass("current").hide("clip", { direction: "horizontal" }, 300, function() {
			var self = this;
			window.setTimeout(function() {
			$(self).show("clip", { direction: "horizontal" }, 300, function() { $(this).removeClass("current"); });
			},500);
	});
}

function Drop_In(){
	$("#login_mem").addClass("current").hide("drop", { direction: "up" }, 10, function() {
			var self = this;
			window.setTimeout(function() {
			$(self).show("drop", { direction: "up" }, 400, function() { $(this).removeClass("current"); });
			},500);
	});
}

function Fade_Out(){
	$("#rec_box").addClass("current").hide("clip", { direction: "horizontal" }, 300, function() { });
}


function Check_Id(){
	$("#eye").css("background-image", "url(../../images/eyes2.gif)");
	$("#mess_girle").show();
}

function Check_Out(){
	$("#eye").css("background-image", "url(../../images/eyes1.gif)");
	$('#mess_girle').hide();
}
