$(document).ready(function() {
 //Code goes here

// jQuery accodian functionality, triggers toggle on click of h5. Can be optimised through better use of IDs
$("div.accordian h5").click(function(event){
 event.preventDefault();
 $(this).parent().children('.contentBox').toggle();
});

});
