$(document).ready(function() {
	
$("a[href^=http]").each( function()	{ if(this.href.indexOf(location.hostname) == -1){ $(this).attr('target', '_blank'); }});


$(".rollover").hover(function(){this.src = this.src.replace("-01","-02"); },function(){ this.src = this.src.replace("-02","-01");});

});
