$(document).ready(function() { 
	$("div#header a#show-auth").click(function () { 
		$("#div-auth").fadeIn(200);
		$("#div-reg").fadeOut(60);
	  });
	$("div#close").click(function () { 
		$("#div-auth").fadeOut(60); 
	  });
	$("div#header a#show-reg, a#show-reg2").click(function () { 
		$("#div-reg").fadeIn(200);
		$("#div-auth").fadeOut(60);
	  });
	$("div#close1").click(function () { 
		$("#div-reg").fadeOut(60); 
	  });
	$("#div-reg,#div-auth").pngFix();
});





