function hiendn(){
jQuery(".guestwarn").fadeOut("slow",function() {
jQuery(".amature").fadeIn("slow");
});
}
function andn(){
jQuery(".amature").fadeOut("slow",function() {
jQuery(".guestwarn").fadeIn("slow");
});
}
jQuery(document).ready(function(){
jQuery(".close").click(function(){
hiendn();
});
jQuery(".dady").click(function(){
andn();
});
});