$(document).ready(function(){

	// Open external links in new tab
	$("a.external").attr({ target: "_blank" });
	
	// Remove outlines from clicked links
	$("a").click(function() {
		$(this).blur();
	});
	
	// IE6 PNG FIX
	$(document).pngFix(); 
	
	// IE6 hover menu fix
	$("#navigation li:hover").hover
	(function() {
		$(this).addClass("hover");
		//alert('test');
	},
	function () {
		$(this).removeClass("hover");
	}
	);



});
