 $(document).ready(function(){
   $("a.inactive").mouseover(function(){
      	$("a.active").addClass("active-override");
    }).mouseout(function(){
      	$("a.active").removeClass("active-override");
    });

	// Open external links in new tabs
	 $("a[href^='http']").attr('target','_blank');

 });

