$(document).ready(function(){
	
	$("#home_LINK").click(function(){
		document.location = "index.html";
	});
	
	$("#investor_information_LINK").click(function(){
		document.location = "02_investor_information.html";
	});
	
	$("#projects_LINK").click(function(){
		document.location = "03_projects.html";
	});
	
	$("#corporate_LINK").click(function(){
		document.location = "04_corporate.html";
	});
	
	$("#news_LINK").click(function(){
		document.location = "05_news.html";
	});
	
	$("#contact_us_LINK").click(function(){
		document.location = "06_contact_us.html";
	});
	
});

alertWindow = function(varAlert) {
	if (varAlert == "contact_error") {
		alert("Please make sure you fill in the following fields:\n\n * First Name\n * Last Name\n * E-mail");	
	}
	if (varAlert == "email_newsletter_error") {
		alert("Please Enter a Valid E-mail Address.");	
	}
	if (varAlert == "contact_thank_you") {
		alert("Thank You for Contacting Us!");	
	}
	if (varAlert == "email_newsletter_thank_you") {
		alert("Thank You for Subscribing!");	
	}
}