var search_maps = {
    '/articles/':47,
    '/blogs/':55,
    '/forums/':193,
    '/groups/':63,
    '/training/':0,
    '/exercise-summary/':0,
    '/self-assessment/':0,
    '/training-plans/':0,
    '/weight-tracker/':0,
    '/pace-tools/':0,
    '/events-calendar/':95,
    '/charity-challenges/':0,
    '/activity-listings/':0,
    '/maps/':121,
    '/photos-and-videos/':74,
    '/photos/':74,
    '/videos/':88,
    '/quizzes/':143,
	'/shop/': 187
}

jQuery(document).ready(function() {
    cur_parent_path = window.location.pathname.match(/\/.*?\//);
    setSearchSelect(search_maps[cur_parent_path]);
    
    jQuery('#search_drop').change(function() {
        jQuery('#search_form').attr('action', jQuery(this).val());
    });
});

function setSearchSelect(ctValUrl) {
    if (isNaN(parseInt(ctValUrl))) {
        jQuery('[value='+ctValUrl+']').attr('selected', true);
    } else {
        jQuery('[value=/search/'+ctValUrl+'/]').attr('selected', true);
        if (ctValUrl != 0 && ctValUrl != undefined) {
            jQuery('#search_form').attr('action', '/search/'+ctValUrl+'/');
        } else {
            jQuery('#search_form').attr('action', '/search/');
        }
    }
}
