function emailink(){
window.location = "mailto:"+"?subject=Want to go to this City of Joondalup event%3F&body=" + document.title + "%0D%0A" + escape(window.location.href);
}

jQuery(document).ready(function(){
  jQuery(".faqanswer").hide();
  jQuery(".faqquestion").click(function () {
    //alert("hello");
    jQuery(this).children(".faqanswer").toggle("slow");
    return false;
  });     
});

