$(document).ready(function(){
	$('#home_01').hover(
		function(){
			$(this).attr('src', 'images/home_hover_01.jpg');
		},
		function(){
			$(this).attr('src', 'images/home_01.jpg');
		}
	);
	$('#home_04').hover(
		function(){
			$(this).attr('src', 'images/home_hover_04.jpg');
		},
		function(){
			$(this).attr('src', 'images/home_04.jpg');
		}
	);
	$('#home_06').hover(
		function(){
			$(this).attr('src', 'images/home_hover_06.jpg');
		},
		function(){
			$(this).attr('src', 'images/home_06.jpg');
		}
	);
	$('#home_12').hover(
		function(){
			$(this).attr('src', 'images/home_hover_12.jpg');
		},
		function(){
			$(this).attr('src', 'images/home_12.jpg');
		}
	);
});

if (document.images)
{
	pic1 = new Image(); 
	pic1.src = "images/home_hover_01.jpg"; 

	pic2 = new Image(); 
	pic2.src = "images/home_hover_04.jpg"; 

	pic3 = new Image(); 
	pic3.src = "images/home_hover_06.jpg";

	pic4 = new Image(); 
	pic4.src = "images/home_hover_12.jpg";
}
