﻿$(document).ready(
                function() {                   
                    addOfficeLinks();

                });
function addOfficeLinks() {

    //officeThumb div class
    $('.officeThumb').mouseover(function() {
    var flagOn = $(this).find('.flagOn')[0].value;
    $(this).find('img')[0].src = flagOn;

});

// officeThumb a href link
$('.officeThumb').find('a').mouseover(function() {
    var flagOn = $(this).parent().parent().find('.flagOn')[0].value;    
    $(this).parent().parent().find('img')[0].src = flagOn;

});


    $('.officeThumb').mouseout(function() {
        var flagOff = $(this).find('.flagOff')[0].value;
        $(this).find('img')[0].src = flagOff;
    });

    $('.officeThumb').find('a').mouseout(function() {
    var flagOff = $(this).parent().parent().find('.flagOff')[0].value;
    $(this).parent().parent().find('img')[0].src = flagOff;
    });

}
