$(document).ready(function(){
var login_box = $('#login_box');
var reg_box = $('#reg_box');
var remind_box = $('#remind_box');
var feed_box = $('#feed_box');
var profile = $('#profile');

reg_box.hide();
remind_box.hide();
feed_box.hide();


$('.enter').click(function(){
login_box.show(10);
reg_box.hide();
remind_box.hide();
feed_box.hide();
});

$('.registration').click(function(){
login_box.hide();
reg_box.show(10);
remind_box.hide();
feed_box.hide();
});

$('.remind').click(function(){
login_box.hide();
reg_box.hide();
remind_box.show(10);
feed_box.hide();
});

$('.feedback').click(function(){
feed_box.show(10);
});

$('.close').click(function(){
feed_box.hide();
});

});
