jQuery(document).ready(function($){

	// --------------------------------------------------------------------------------------------
	// change link in footer when the active category is under the "Baby" tab
	try {
		if ( $('#div__header #slb_bread_crumb').text().match(/^\s*Baby\b/) !== null ){
			$('#div__footer #SL_footer #row1 #invite_friend')
				.attr('href','/refer-a-momtobe')
				.text('Refer A Mom-To-Be')
			;
		}
	}
	catch(e){}

});
