﻿// SHOW AND HIDE_FOOTER BTNS
 
    
  
 $(document).ready(function() {
		$("div.boxenfloats_1").mouseenter( function() {
			$('div.boxenfloats_1').css("background-image","url(img/boxen_3er_over_01.gif)");
			});
});  
  
 $(document).ready(function() {
		$("div.boxenfloats_1").mouseout( function() {
			$('div.boxenfloats_1').css("background-image","url(img/boxen_3er_reihe_01.gif)");
			});
}); 

 $(document).ready(function() {
		$("div.boxenfloats_2").mouseenter( function() {
			$('div.boxenfloats_2').css("background-image","url(img/boxen_3er_over_02.gif)");
			});
});  
  
 $(document).ready(function() {
		$("div.boxenfloats_2").mouseout( function() {
			$('div.boxenfloats_2').css("background-image","url(img/boxen_3er_reihe_02.gif)");
			});
}); 

 $(document).ready(function() {
		$("div.boxenfloats_3").mouseenter( function() {
			$('div.boxenfloats_3').css("background-image","url(img/boxen_3er_over_03.gif)");
			});
});  
  
 $(document).ready(function() {
		$("div.boxenfloats_3").mouseout( function() {
			$('div.boxenfloats_3').css("background-image","url(img/boxen_3er_reihe_03.gif)");
			});
}); 

