$(document).ready(function(){
	$('#xg_navigation a, #application_name_header_link').each(function(){
		if($(this).attr('href')=='http://activecooks.ning.com/'){
			$(this).attr('href', 'http://www.activecooks.com/');
		}
		else if($(this).attr('href')=='/'){
			$(this).attr('href', 'http://www.activecooks.com/');
		}
		/*else if($(this).attr('href')=='http://activecooks.ning.com/news'){
			$(this).attr('href', 'http://www.activecooks.com/?q=taxonomy/term/1');
		}*/
		else if($(this).attr('href')=='http://activecooks.ning.com/recipe'){
			$(this).attr('href', 'http://www.activecooks.com/?q=taxonomy/term/2');
		}
	});
});