/** Global Javascript **/

var pageOnLoad = function() {}; // overridden by given page

$(document).ready( function(){
	$(document).pngFix(); 
	$('#primary-navigation').corner("round 8px top")
	$('#branding').corner("round 8px bottom")
	$('#inner-branding').corner("round 8px bottom")
	$('#secondary-navigation dl dt').corner("round 8px top")
	$('#tirtiary-content h2').corner("round 8px")
	$('#tirtiary-content p').corner("round 8px")
	$('#tirtiary-content div.links-list ul li').corner("round 8px")
	$(function(){$('a[href][rel*=external]').each(function(i){this.target = "_blank";});});
	pageOnLoad();
});