// JavaScript Document
 var imageName=null

	if (document.images)

	{

		about_up = new Image();
		about_up.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/about.jpg";
		about_over = new Image();
		about_over.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/about2.jpg";

		services_up = new Image();
		services_up.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/services.jpg";
		services_over = new Image();
		services_over.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/services2.jpg";

		contact_up = new Image();
		contact_up.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/contact.jpg";
		contact_over = new Image();
		contact_over.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/contact2.jpg";

		home_up = new Image();
		home_up.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/home.jpg";
		home_over = new Image();
		home_over.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/home2.jpg";

		manufacturers_up = new Image();
		manufacturers_up.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/manufacturers.jpg";
		manufacturers_over = new Image();
		manufacturers_over.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/manufacturers2.jpg";

		testimonials_up = new Image();
		testimonials_up.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/testimonials.jpg";
		testimonials_over = new Image();
		testimonials_over.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/testimonials2.jpg";


portfolio_up = new Image();
		portfolio_up.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/portfolio.jpg";
		portfolio_over = new Image();
		portfolio_over.src = "http://johnsonsroofinginc.com/wp-content/themes/default/images/portfolio2.jpg";


	}



	function changeTo(imageName)

	{

		if (document.images)

		{

			if (imageName=="about") document[imageName].src = about_over.src;

			if (imageName=="services") document[imageName].src = services_over.src;

			if (imageName=="contact") document[imageName].src = contact_over.src;

			if (imageName=="home") document[imageName].src = home_over.src;


			if (imageName=="manufacturers") document[imageName].src = manufacturers_over.src;

			if (imageName=="testimonials") document[imageName].src = testimonials_over.src;

if (imageName=="portfolio") document[imageName].src = portfolio_over.src;

			}

	}



	function changeBack(imageName)

	{

		if (document.images)

		{

			if (imageName=="about") document[imageName].src = about_up.src;

			if (imageName=="services") document[imageName].src = services_up.src;

			if (imageName=="contact") document[imageName].src = contact_up.src;

			if (imageName=="home") document[imageName].src = home_up.src;


			if (imageName=="manufacturers") document[imageName].src = manufacturers_up.src;

			if (imageName=="testimonials") document[imageName].src = testimonials_up.src;

if (imageName=="portfolio") document[imageName].src = portfolio_up.src;


		}

	}


