$(function() {
    var region = document.location.href.match('#.*') || '#pres';
    region = region.toString().replace(/^#/, '#c');

    $('div#' + region).addClass('highlighted');
    $('div#read_section').html($('div#' + region).find('div.service_content').html()).show();
    
    $('div#services_accordion div.serv').click(function() { show_skillz(this); });
})
var show_skillz = function(obj) {
    $('div#services_accordion > div').removeClass('highlighted');
    $(obj).addClass('highlighted');
    $('div#read_section').html($(obj).find('div.service_content').html()).show();
    document.location.href = document.location.href.split('#')[0] + '#' + $(obj).attr('id').replace(/^c/, '');
    if($('input#in_production').length > 0) {
        pageTracker._trackEvent('Services Page Tabs', 'View Tab: ' + $(obj).attr('id').replace(/^c/, ''));
    }
};

