$(document).ready(function(){
	$('#interior_01').hover(
		function(){
			$(this).attr('src', 'images/interior_hover_01.jpg');
		},
		function(){
			$(this).attr('src', 'images/interior_01.jpg');
		}
	);
	$('#interior_03').hover(
		function(){
			$(this).attr('src', 'images/interior_hover_03.jpg');
		},
		function(){
			$(this).attr('src', 'images/interior_03.jpg');
		}
	);
	$('#interior_04').hover(
		function(){
			$(this).attr('src', 'images/interior_hover_04.jpg');
		},
		function(){
			$(this).attr('src', 'images/interior_04.jpg');
		}
	);
	$('#interior_05').hover(
		function(){
			$(this).attr('src', 'images/interior_hover_05.jpg');
		},
		function(){
			$(this).attr('src', 'images/interior_05.jpg');
		}
	);
});

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

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

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

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