$(document).ready(function() {
    
    /*
     * Adds open links to the H2's
     */
    $('#stockist-list h2').prepend("<span class='state'>Open</span>");
	
    /*
     * Adds accordion effect to the stockist sections
     */
    $('#stockist-list').accordion({
        autoHeight: false,
        active: false,
        alwaysOpen: false,
        collapsible: true,
		header: 'h2',
        change: function(event, ui) {
            $('.ui-state-active span.state').html('Close');
            $('.ui-state-default span.state').html('Open');
            $('h2').blur();
	    }
    });
    
});