$(function(){
	$('a[rel*=external]').click(function(){
		window.open(this.href);
		return false;
	});
	chrome();
});
function chrome(){
	if($.browser.msie){
		$('body').prepend('<div id="chrome"><a href="http://chrome.google.com">Download Google Chrome<img src="/img/chrome.png" alt="Download Google Chrome" /></a></div>');
		$('#chrome').slideDown(1000);
	}
}
