function GetOwnerInfo(state) {
    ALt = "AR,IN,IA,KS,MN,MO,NE,OK,SD,TX,WI";
    BDt = "MB,NS,ON,AK,AZ,CA,HI,ID,OR,WA,MT,CO,NV,NM,UT,ND,WY,AB,BC,MB,NB,NT,NS,NU,ON,PE,QC,SK,YT";
    RHt = "DE,VA,DC,IL,KY,MD,WV,MI,OH";
    ABt = "AL,FL,GA,LA,MS,NC,PR,SC,TN";
    TBt = "CT,ME,MA,NH,NJ,NY,PA,VT,RI";
    if (ALt.indexOf(state) != -1) {
        $('#profile').html('');
        $('#profile').append('<img src="/media/photos/adventure-specialist_AL.jpg" width="100px" height="100px" alt="Adventure Specialist" />');
        $('#profile').append('<br />');
        $('#profile').append('<h4>        Alix Lee      </h4>');
        $('#profile').append('<p>        509-994-9410<br/>        Alix.Lee@discoverystudentadventures.com<br/>        Adventure Specialist      </p>');
    }
    if (BDt.indexOf(state) != -1) {
        $('#profile').html('');
        $('#profile').append('<img src="/media/photos/adventure-specialist_BD.jpg" width="100px" height="100px" alt="Adventure Specialist" />');
        $('#profile').append('<br />');
        $('#profile').append('<h4>        Bradey Day      </h4>');
        $('#profile').append('<p>        360-464-3056<br/>        bradey.day@discoverystudentadventures.com<br/>        Adventure Specialist      </p>');
    }
    if (RHt.indexOf(state) != -1) {
        $('#profile').html('');
        $('#profile').append('<img src="/media/photos/adventure-specialist_RH.jpg" width="100px" height="100px" alt="Adventure Specialist" />');
        $('#profile').append('<br />');
        $('#profile').append('<h4>       Robert Hyde      </h4>');
        $('#profile').append('<p>        509-568-7946<br/>       robert.hyde@discoverystudentadventures.com<br/>        Adventure Specialist      </p>');
    }
    if (ABt.indexOf(state) != -1) {
        $('#profile').html('');
        $('#profile').append('<img src="/media/photos/adventure-specialist_AB.jpg" width="100px" height="100px" alt="Adventure Specialist" />');
        $('#profile').append('<br />');
        $('#profile').append('<h4>        Aimee Brayman      </h4>');
        $('#profile').append('<p>        509-979-1187<br/>        aimee.brayman@discoverystudentadventures.com<br/>        Adventure Specialist      </p>');
    }
    if (TBt.indexOf(state) != -1) {
        $('#profile').html('');
        $('#profile').append('<img src="/media/photos/adventure-specialist_TB.jpg" width="100px" height="100px" alt="Adventure Specialist" />');
        $('#profile').append('<br />');
        $('#profile').append('<h4>        Trevor Brink      </h4>');
        $('#profile').append('<p>        509-979-4218<br/>        trevor.brink@discoverystudentadventures.com<br/>        Adventure Specialist      </p>');
    }

}

