/**
 *  Initialise the drop down items on the What We Offer page
 */
function initDropDowns()
{
    $('.drop-down dd').hide();
    $('.drop-down dt').click(function () {

        $(this).next().slideToggle('normal');
        $(this).toggleClass('open');
        
    });
}
function initDemoDropDowns()
{
	$('.drop-down dt').click(function () {

    $(this).next().toggleClass('open-graphs');
    $(this).toggleClass('open');
    
});
}
/**
 * Popup help windows for  the Prices page
 */ 
function popup(url) {
		window.open(url,"","width=400, height=450, toolbar=0");
}

