var searchbuttonon = new Image();
searchbuttonon.src = '/images/Core/New/btn_find_on.gif';
var searchbuttonoff = new Image();
searchbuttonoff.src = '/images/Core/New/btn_find_off.gif';

var archivebtnon = new Image();
archivebtnon.src = '/images/Core/New/btn_view_full_archive_on.gif';
var archivebtnoff = new Image();
archivebtnoff.src = '/images/Core/New/btn_view_full_archive_off.gif';

var otherstubtnon = new Image();
otherstubtnon.src = '/images/Core/New/btn_meet_other_stu_on.gif';
var otherstubtnoff = new Image();
otherstubtnoff.src = '/images/Core/New/btn_meet_other_stu_off.gif';

function searchButtonOver(button)
{ button.src = searchbuttonon.src; }
function searchButtonOut(button)
{ button.src = searchbuttonoff.src; }

function archiveOver(button)
{ button.src = archivebtnon.src; }
function archiveOut(button)
{ button.src = archivebtnoff.src; }

function otherStuOver(button)
{ button.src = otherstubtnon.src; }
function otherStuOut(button)
{ button.src = otherstubtnoff.src; }



