$(document).ready(function(){

	//popup links
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

    $(".home").hover(
      function () {$("#infotext").append($("<span>&raquo; Norwest Medical Imaging Home</span>"));}, 
      function () {$("#infotext").find("span:last").remove();}
    );
	
    $(".about").hover(
      function () {$("#infotext").append($("<span>&raquo; About Norwest Medical Imaging</span>"));}, 
      function () {$("#infotext").find("span:last").remove();}
    );
	
    $(".doctors").hover(
      function () {$("#infotext").append($("<span>&raquo; Meet our experienced Radiologist team</span>"));}, 
      function () {$("#infotext").find("span:last").remove();}
    );
	
    $(".patientinfo").hover(
      function () {$("#infotext").append($("<span>&raquo; Information for patients about our various procedures</span>"));}, 
      function () {$("#infotext").find("span:last").remove();}
    );
	
    $(".referrers").hover(
      function () {$("#infotext").append($("<span>&raquo; Information and downloads for our referrers</span>"));}, 
      function () {$("#infotext").find("span:last").remove();}
    );
	
    $(".contact").hover(
      function () {$("#infotext").append($("<span>&raquo; Where to find us and how to contact us</span>"));}, 
      function () {$("#infotext").find("span:last").remove();}
    );
	
    $(".workers").hover(
      function () {$("#infotext").append($("<span>&raquo; Worker's Compensation information</span>"));}, 
      function () {$("#infotext").find("span:last").remove();}
    );

});
