// JavaScript Document

/*
	Prerequisite: JQuery
*/

	var exp = RegExp('/mx/|/es/|/mx\.|/es\.|recipeMX/|recipeES/','i');
	var loc = location.href;
	var bg  = 'url(/Clientcss/images/button_buscar.gif) center no-repeat';
					  

	/* If the url for the page includes "/mx/" or "/es/" or "/mx." or "/es.",
	   it is a Spanish page; so replace the #searchGo background css with the
	   Spanish equivalent.
	*/
	if (exp.test(loc) == true) {
		$(document).ready(function() {
			$('#searchGo').css('background',bg);
		})
	}

