

/***********************************************************************************
 *  Description:	This function allows for user to go to corresponding Spanish page if it exists,  
 * 					 	if it doesn't exist go to the Spanish main page when user clicks on "Spanish" button.
 ************************************************************************************/
function gotoSpanish()
{
	url = window.location.href;
	var slash = "/";
	var filename = url.substring(url.lastIndexOf (slash) + 1, url.length) ;

	switch (filename){
		case "tampa-salsa-lessons.html":
				this.location.href = "http://www.dancingwithgrace.com/espanol/clases_de_baile.html";
			break;
		case "tampa-salsa-lessons.html#top":
				this.location.href = "http://www.dancingwithgrace.com/espanol/clases_de_baile.html";
			break;
		case "salsa-videos.html":
				this.location.href = "http://www.dancingwithgrace.com/espanol/videos_de_salsa.html";
			break;
		case "salsa-music-selections.html":
				this.location.href = "http://www.dancingwithgrace.com/espanol/selecciones_de_CDs_de_salsa.html";
			break;
		case "about-us.html":
				this.location.href = "http://www.dancingwithgrace.com/espanol/sobre_nosotros.html";
			break;
		case "contact-us.html":
				this.location.href = "http://www.dancingwithgrace.com/espanol/contactenos.html";
			break;
		default : /* Got to Spanish Main Page */
				this.location.href = "http://www.dancingwithgrace.com/espanol/";
	}
}


/***********************************************************************************
 *  Description:	This function allows for user to go to corresponding English page if it exists, 
 * 					 	if it doesnt exist go to the English main page when user clicks on "English" button.
 ************************************************************************************/
function gotoEnglish()
{
	url = window.location.href;
	var slash = "/";
	var filename = url.substring(url.lastIndexOf (slash) + 1, url.length) ;

	switch (filename){
		case "clases_de_baile.html":
				this.location.href = "http://www.dancingwithgrace.com/tampa-salsa-lessons.html";
			break;
		case "clases_de_baile.html#top":
				this.location.href = "http://www.dancingwithgrace.com/tampa-salsa-lessons.html";
			break;
		case "videos_de_salsa.html":
				this.location.href = "http://www.dancingwithgrace.com/salsa-videos.html";
			break;
		case "selecciones_de_CDs_de_salsa.html":
				this.location.href = "http://www.dancingwithgrace.com/salsa-music-selections.html";
			break;
		case "sobre_nosotros.html":
				this.location.href = "http://www.dancingwithgrace.com/about-us.html";
			break;
		case "contactenos.html":
				this.location.href = "http://www.dancingwithgrace.com/contact-us.html";
			break;
		default : /* Got to English Main Page */
				this.location.href = "http://www.dancingwithgrace.com/";
	}
}

