// Ensure that we're not enclosed in someone else's frame
if (top.location.href != self.location.href) {
	 top.location.replace(self.location.href);
}

//Switch from pinguinos.bikemexico.com to www.bikemexico.com/pinguinos
if (top.location.href.search("pinguinos") != -1) {
	 top.location.href = 'http://www.BikeMexico.com/pinguinos';
}

