$(document).ready(function() {
	$('#refer_friend').hide();
	$('#lnk_open_friend').click(function () {
		$('#refer_friend').show(400) ;
          });
	$('#lnk_close_friend').click(function(){
		$('#refer_friend').hide(200) ;
	})
});