/**
*
* @package    ABRSM
* @author     Darren Clark <darren@cwebd.co.uk>
* @version    $Id: abrsm-regions.js 93 2008-09-10 09:32:55Z darren $
*
*/

$(document).ready(function() {

    // Handle hiding of the content on HLR contact forms
    if ($("#contactHLR").length > 0 ) {
	// Hide any paragraphs within the contentWrapper
	$("#contentwrapper h2").hide();
        $("#contentwrapper h3").hide();
        $("#contentwrapper hr").hide();
	$("#contentwrapper p").hide();
    }
})



