$(document).ready(function() {
$("#overview, #contents, #testimonials").hide();
$("#clickMe").click(function() {
$("#overview").toggle("slow");
});
$("#clickMe2").click(function() {
$("#contents").toggle("slow");
});
$("#clickMe3").click(function() {
$("#testimonials").toggle("slow");
});
});
