//rendering through javascript
$(function() {
    $("body").prepend(
      "<link rel='stylesheet' href='views/shared/nice_buttons.css?1417410194' type='text/css' />"
 + "<style>"
 + "a {"
 + "outline: none;"
 + "}"
 + "html {"
 + "margin-top: 35px;"
 + "}"
 + ""
 + ".content_align {"
 + "position: relative;"
 + "}"
 + ""
 + "#ads_top_panel {"
 + "width:100%;"
 + "height:40px;"
 + "margin-top: -35px;"
 + "z-index: 100000;"
 + "position: fixed;"
 + "background:  url(/images/page_view/ads_panel_back.png) repeat-x;"
 + "color: #fff;"
 + "font-size: 14px;"
 + "}"
 + ""
 + "a {"
 + "color: #fff;"
 + "}"
 + ""
 + "</style>"
 + ""
 + "<div id=ads_top_panel>"
 + "<img src=\"images/mini_logo.png\" alt=\"WebPaper Logo\"  height=\"38px\" style=\"float:left;margin-left:10px;\">"
 + ""
 + "<div style=\"float:left;width:400px;text-align:center;\">"
 + "<span style=\"font-size:16px\">This website was made using WebPaper.co</span><br>"
 + "Make your very own website 100% FREE!"
 + "</div>"
 + ""
 + "<div style=\"float:left;margin-top:8px;width:100px;text-align:center;\">"
 + "<a class='view_panel_button nice_button green' href=//webpaper.co/user/signup title='signup'>Sign Up</a>"
 + "</div>"
 + ""
 + "<div id=\"close\" style=\"float:right;cursor:pointer;margin-right:10px;\">X</div>"
 + "<div style=\"float:right;text-align:center;width:260px\">"
 + "<a href=\"/subscribe/noads\">"
 + "Want to get rid of this ad?<br>"
 + "<span style=\"font-size:16px\">only $1/month</span>"
 + "</a>"
 + "</div>"
 + ""
 + "</div>"
 + ""
 + "<script>"
 + "$(function() {"
 + ""
 + "$(\"#ads_top_panel #close\").click( function() {"
 + "$(\"#ads_top_panel\").hide();"
 + "$(\"html\").css(\"margin-top\",0);"
 + "return false;"
 + "})"
 + ""
 + "})"
 + ""
 + "</script>"
 + ""
 + ""
    );
});