// JavaScript Document
$(document).ready(function(){
 
	$('#page_effect').fadeIn(2000);
	
	// load index page when the page loads
	$("#information").load("copy/content.html #welcome");
	
	$("#Services").click(function(){
	// load home page on click
		$("#information").load("copy/content.html #Services");
	});
	$("#Contact").click(function(){
	// load home page on click
		$("#information").load("copy/content.html #Contact");
	});
	$("#Follow").click(function(){
	// load about page on click
		$("#information").load("copy/content.html #Follow");
	});
	$("#About").click(function(){
	// load about page on click
		$("#information").load("copy/content.html #About");
	});
	
});




