$(document).ready(function(){
	
	// fix PNGs for IE6
	$(document).pngFix();
	
	// fix "external" links to open in new window									 
	$('a[rel="external"]').click(function(){
		window.open(this.href);
		return false;
	}).attr('title', 'Opens in New Window or Tab');

	
});
