$(document).ready(function(){

	// Add active page marker
	$("a.main_nav_button").each(function() {
  		if(this.href == window.location) 
  		{
  			$(this).parent("li").addClass("current");
  		}
	});
	
/*
	$("div.link_column h2").each(function(){
		
		var col_html = $(this).html();
		var add_html = " <span class='arrow_block'><img src='/_files/old/images/subpage/bg-link-column-h2.gif' alt='' /></span>";
		
		$(this).html(col_html + add_html);	
	});
*/

});



window.onunload = unload;
function unload() { 
	// This function does not have to do anything
	// it just needs to exist
	// to clear up a bfcache isssue
}
