$(document).ready(function(){

	// external links
	$("a.externalLink").click(function(){
		window.open($(this).attr("href"));
		return false;
	});
	
	stopFlicker();

});

function stopFlicker()
{
	try
	{
		document.execCommand("BackgroundImageCache", false, true);
	}
	catch(err){}
} // stopFlicker()