Top
Home
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("article img[title]").tooltip();
});
</script> <?php
include ("guide.php");
?>

<style>
.readmore:link{
text-decoration:none;
padding:2px 5px;
background:#339933;
width:100px;
color:#fff;
font-family:sans-serif;
}
.readmore:hover{
text-decoration:none;
padding:2px 5px;
background:#33cc33;
width:100px;
color:#000;
}
.close:link{
font-family:sans-serif;
text-decoration:none;
padding:2px 5px;
background:#eb1f41;
width:100px;
color:#fff;
}
.close:hover{
text-decoration:none;
padding:2px 5px;
background:#fe8499;
width:100px;
color:#000;
}
.heading{
font-size:18px;color:red;
}
</style>
<section id="MooseLoose">

################### Begin Pasting here###############

</section>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="readmore.js"></script>
<script>
  $('#info').readmore({
    collapsedHeight: 10,
    afterToggle: function(trigger, element, expanded) {
      if(! expanded) {
        $('html, body').animate({scrollTop: $(element).offset().top}, {duration: 100});
      }
    }
  });

  $('article').readmore({speed: 1000});
</script>

<style>
article{
background:transparent;
font-family:Courier New, Courier, monospace;
}
.heading{
font-size:18px;color:red;
font-family:sans-serif;
}

</style>