/* Global Javascript File */
$(function(){
	if(window.location.hash) {
	  highlightSeriesGroup($("span#"+window.location.hash));
	}
})

function highlightSeriesGroup(ele){
  ele.css({'background-color':'#263e56', 'color':'#ffffff'});
  ele.next().css('font-weight','bold');
}

