// JavaScript Document

$(document).ready(function(){
	
	
	$("#home_button").mouseover(function() {
									$("#home_button_2").fadeIn(300);
									$("#home_button_2").mouseout(function () {
																	$(this).fadeOut(300);
																		   });
								});
	$("#home_button").css("cursor", "pointer");
	$("#home_button").click(function (){
						document.location = 'index.php';
										});
	$("#home_button_2").css("cursor", "pointer");
	$("#home_button_2").click(function (){
						document.location = 'index.php';
										});
	
	$("#services_button").mouseover(function() {
									$("#services_button_2").fadeIn(300);
									$("#services_button_2").mouseout(function () {
																	$(this).fadeOut(300);
																		   });
									});
	
	$("#services_button").css("cursor", "pointer")
	$("#services_button").click(function (){
						document.location = 'services.php';
										});
	$("#services_button_2").css("cursor", "pointer")
	$("#services_button_2").click(function (){
						document.location = 'services.php';
										});
						   
	//End of Code
 });
