HBLimg = new Image(); HBLimg.src = '/photo/homebanner_Banner_Home_Links(6).jpg'; HBLimgO = new Image(); HBLimgO.src = '/photo/homebanner_Banner_Home_Links(7).jpg'; HBMimg = new Image(); HBMimg.src = '/photo/homebanner_Mouse-out.jpg'; HBMimgO = new Image(); HBMimgO.src = '/photo/homebanner_Mouse-over.jpg'; HBRimg = new Image(); HBRimg.src = '/photo/homebanner_home_banner_right.jpg'; HBRimgO = new Image(); HBRimgO.src = '/photo/homebanner_Grote golf(7).jpg'; HBB2img = new Image(); HBB2img.src = '/photo/homebanner_versie5_banner_EYW_out.jpg'; HBB2imgO = new Image(); HBB2imgO.src = '/photo/homebanner_versie5_banner_EYW_over.jpg'; HBB3img = new Image(); HBB3img.src = '/photo/homebanner_homebanner_Banner_Home_studielink.jpg'; HBB3imgO = new Image(); HBB3imgO.src = '/photo/homebanner_homebanner_Banner_Home_studielink(1).jpg'; HBB4img = new Image(); HBB4img.src = '/photo/homebanner_banner_home_aanvraag_flyer_out(1).jpg'; HBB4imgO = new Image(); HBB4imgO.src = '/photo/homebanner_banner_home_aanvraag_flyer_over(1).jpg'; $(document).ready(function() { $('#HBLimg') .mouseover(function() { this.src = HBLimgO.src; }) .mouseout(function() { this.src = HBLimg.src; }) $('#HBMimg') .mouseover(function() { this.src = HBMimgO.src; }) .mouseout(function() { this.src = HBMimg.src; }) $('#HBRimg') .mouseover(function() { this.src = HBRimgO.src; }) .mouseout(function() { this.src = HBRimg.src; }) $('#HBB2img') .mouseover(function() { this.src = HBB2imgO.src; }) .mouseout(function() { this.src = HBB2img.src; }) $('#HBB3img') .mouseover(function() { this.src = HBB3imgO.src; }) .mouseout(function() { this.src = HBB3img.src; }) $('#HBB4img') .mouseover(function() { this.src = HBB4imgO.src; }) .mouseout(function() { this.src = HBB4img.src; }) });