/*
	Copyright DTDigital         :: www.dtdigital.com.au ::
	Unauthorised modification / use is a criminal offence, and
	will be prosecuted to the fullest extent permitted by law.
	All Rights Reserved
*/

// jQuery functions that run on "dom ready"

var _jQueryLoaded = (typeof(jQuery) == "function");
if (_jQueryLoaded)
{
    $(function() {

        // maintenance page full height bcg
        $(".pMaintenance").parents("html").height("100%");

    });
}

