﻿imgHBL1 = new Image();
imgHBL1.src = '/images/homebanner_left1.jpg';
imgHBL1_o = new Image();
imgHBL1_o.src = '/images/homebanner_left1_over.jpg';

imgHBL2 = new Image();
imgHBL2.src = '/images/homebanner_left2.jpg';
imgHBL2_o = new Image();
imgHBL2_o.src = '/images/homebanner_left2_over.jpg';

imgHBL3 = new Image();
imgHBL3.src = '/images/homebanner_left3.jpg';
imgHBL3_o = new Image();
imgHBL3_o.src = '/images/homebanner_left3_over.jpg';

imgHBM1 = new Image();
imgHBM1.src = '/images/homebanner_middle1.jpg';
imgHBM1_o = new Image();
imgHBM1_o.src = '/images/homebanner_middle1_over.jpg';

imgHBM2 = new Image();
imgHBM2.src = '/images/homebanner_middle2.jpg';
imgHBM2_o = new Image();
imgHBM2_o.src = '/images/homebanner_middle2_over.jpg';

$(document).ready(function() {
     $('#imgHBL1')
        .mouseover(function() {
            this.src = imgHBL1_o.src;
        })
        .mouseout(function() {
            this.src = imgHBL1.src;
        })
        
    $('#imgHBL2')
        .mouseover(function() {
            this.src = imgHBL2_o.src;
        })
        .mouseout(function() {
            this.src = imgHBL2.src;
        })  

    $('#imgHBL3')
        .mouseover(function() {
            this.src = imgHBL3_o.src;
        })
        .mouseout(function() {
            this.src = imgHBL3.src;
        })
      
    $('#imgHBM1')
        .mouseover(function() {
            this.src = imgHBM1_o.src;
        })
        .mouseout(function() {
            this.src = imgHBM1.src;
        }) 
        
    $('#imgHBM2')
        .mouseover(function() {
            this.src = imgHBM2_o.src;
        })
        .mouseout(function() {
            this.src = imgHBM2.src;
        })
});
