/*  * Plugin Config  */
var site_states = {
    'Western Australia': 'western-australia',
    'Northern Territory': 'northern-territory',
    'South Australia': 'south-australia',
    'Queensland': 'queensland',
    'New South Wales': 'new-south-wales',
    'Victoria': 'victoria',
    'International': 'international',
    'Tasmania': 'tasmania'
};

jQuery(document).ready(function ($) {
    //$('.churches_image').maphilight(); // highlight states for imagemap  	

    /* churches page =============================================================================*/
    // init contextMenus for each state
    for (var i in site_states) {
        var state = site_states[i];
        $('#' + state).contextMenu({menu: state + 'Menu', leftButton: true}, function(action, el) {
            el = $('#' + state + 'Menu').children('li').children('a#' + action);
            if (action != 'none' && action != 'bottom' && action != '') {
                window.location = 'h'+action; // some strange bug makes url ttp:// instead of http:// 
            } 
        });
    }
});
