$(function () {
	
	// highlight current tab in header
    var tabs = [];
    var tabContainers = [];
    $('#header ul a').each(function () {
        
      if (this.href == window.location) {
      	
      	   $(this).parent().addClass('selected');

        }
    });
    
});
