$(document).ready(function (){
 commentform = $("#remarksform");

 if(commentform.is("div")){
 
 commentform.css({
 	position: "fixed",
 	width: "40%",
 	left: "59%",
 	bottom: "1%",
 	background: "#000",
 	border: 'solid 1px #333'
 });
 
 commentform.children("h3").append("<a href=\"#\" class=\"flink\" id=\"sfloatclose\">(Close me)</a>");
 commentform.hide();
 
 $("BODY").append("<div id=\"sfloatform\"><a href=\"#\" class=\"flink\">Join the conversation!</a></div>");
 
 sfloatform = $("#sfloatform");
 sfloatclose= $("#sfloatclose");

 sfloatform.click(function (){
 	$(this).hide();
 	commentform.show('fast');
 	return false;
 });
 
 sfloatclose.click(function(){
 	commentform.hide('fast');
 	sfloatform.show();
 	return false;
 });
 
 }
});