	$(document).ready(function(){
		// ie png fix
		$.ifixpng('/images/pixel.gif');
		$('.transpng').ifixpng();
		
		
		// open external links in new window & change title attribute
		$('[rel=extLink]').attr('title','Opens in a new window').click(function(){
			window.open(this.href);
			return false;
		});	
		
		
	
	});