function init2() {
	var homePage = document.getElementById('home');
	var about = document.getElementById('about');
	var results = document.getElementById('results');
	var services = document.getElementById('services');
	var testimonials = document.getElementById('testimonials');
	var contact = document.getElementById('contact');

	homePage.onmouseover = function() {
		homePage.src = "images/home-over.jpg";
	}
	homePage.onmouseout = function() {
		homePage.src = "images/home.jpg";
	}
	
	about.onmouseover = function() {
		about.src = "images/about-over.jpg";
	}
	about.onmouseout = function() {
		about.src = "images/about.jpg";
	}
	
	results.onmouseover = function() {
		results.src = "images/results-over.jpg";
	}
	results.onmouseout = function() {
		results.src = "images/results.jpg";
	}
	
	services.onmouseover = function() {
		services.src = "images/services-over.jpg";
	}
	services.onmouseout = function() {
		services.src = "images/services.jpg";
	}
	
	testimonials.onmouseover = function() {
		testimonials.src = "images/testimonials-over.jpg";
	}
	testimonials.onmouseout = function() {
		testimonials.src = "images/testimonials.jpg";
	}
	
	contact.onmouseover = function() {
		contact.src = "images/contact-over.jpg";
	}
	contact.onmouseout = function() {
		contact.src = "images/contact.jpg";
	}
}