// JavaScript Document

$(document).ready(function() { 
	$("a[href='http://www.bpcweb.net/about/']").attr('href', 'http://www.bpcweb.net/about/welcome-letter/');
	$("a[href='http://www.bpcweb.net/admissions/']").attr('href', 'http://www.bpcweb.net/admissions/how-to-apply/');
	$("a[href='http://www.bpcweb.net/how-we-learn/']").attr('href', 'http://www.bpcweb.net/how-we-learn/why-a-k-8-school/');
	$("a[href='http://www.bpcweb.net/support-our-school/']").attr('href', 'http://www.bpcweb.net/support-our-school/annual-gift-fund/');
	$("a[href='http://www.bpcweb.net/our-community/']").attr('href', 'http://www.bpcweb.net/our-community/awards-and-recognition/');
	
	var pathname = window.location.pathname;
	
	if(pathname == "/about/"){
	
		window.location.replace("http://www.bpcweb.net/about/welcome-letter/");
	
	}
	
	if(pathname == "/admissions/"){
	
		window.location.replace("http://www.bpcweb.net/admissions/how-to-apply/");
	
	}
	
	if(pathname == "/how-we-learn/"){
	
		window.location.replace("http://www.bpcweb.net/how-we-learn/why-a-k-8-school/");
	
	}
	
	if(pathname == "/support-our-school/"){
	
		window.location.replace("http://www.bpcweb.net/support-our-school/annual-gift-fund/");
	
	}
	
	if(pathname == "/our-community/"){
	
		window.location.replace("http://www.bpcweb.net/our-community/awards-and-recognition/");
	
	}
	
	if(pathname == "/homepage.html"){
	
		window.location.replace("http://www.bpcweb.net/");
	
	}

}); 
