$(document).ready(function(){
  $("a[href^='http']").not("a[href*='"+location.hostname+"']").click(function (){
    window.open($(this).attr('href'));
    return false;
  });
	
	$("img[style*='float: right']").addClass('fltrt');
	$("img[style*='float: left']").addClass('fltlt');
	
});

