$(document).ready(function() {
	/*My Photos Page*/
	if($('.xg_widget_photo').length > 0) {
		/*
$('.navigation:not(.byline) li:nth-child(1)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/photos.png) no-repeat');
		$('.navigation:not(.byline) li:nth-child(2)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/report_picture.png) no-repeat');
		$('.navigation:not(.byline) li:nth-child(3)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/myphoto.png) no-repeat');
		$('.navigation:not(.byline) li:nth-child(4)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/report_user.png) no-repeat');
		$('.navigation:not(.byline) li:nth-child(5)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/favphoto.png) no-repeat');
*/
		$('.navigation.byline li a.nolink').css('color', 'black');
		
		$('.xg_widget_photo ul.navigation.byline li.right a:last-child').css({
			background: 'transparent url(http://images.marthastewart.com/images/assets/module/package/slide_arrows.gif) no-repeat scroll right top',
			display: 'block',
			height: '30px',
			width: '32px',
			textIndent: '-9999px',
			float: 'right'
		});
		
		$('.xg_widget_photo ul.navigation.byline li.right a:first-child').css({
			background: 'transparent url(http://images.marthastewart.com/images/assets/module/package/slide_arrows.gif) no-repeat scroll left top',
			display: 'block',
			height: '30px',
			width: '32px',
			textIndent: '-9999px',
			float: 'left'
		});
	
	}
	
	/*Forums!*/
	if ($('.xg_widget_forum').length >0) {
	
		$('.navigation:not(.byline) li:nth-child(1)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/comments.png) no-repeat');
		$('.navigation:not(.byline) li:nth-child(2)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/mycomments.png) no-repeat');
		
	}
	
	/*Groups*/
	
	if($('.xg_widget_groups').length > 0) {
		$('.navigation:not(.byline) li:nth-child(1)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/group.png) no-repeat');
		$('.navigation:not(.byline) li:nth-child(2)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/mygroup.png) no-repeat');

	}
	
	/*Edit Profile*/
	if($('.xg_widget_profiles_settings_editProfileInfo').length > 0) {
		if(gup('editnewsletter') == 'true') {
			$('.profile p.label').attr('id', 'FreeNewsletter').css('color', 'red');
			window.location.href = window.location.href + '#FreeNewsletter';
		}
	}
	
	/*
if ($('.xg_widget_profiles_profile_show').length > 0) {
		$('.xg_module.html_module.module_text.xg_reset').hide();
	}
*/
	
	
	
	/*Main Page*/
	if ($('.xg_widget_main').length > 0) {
		if ($('.xg_signup').length > 0) {
			$('.getnews').attr('href', 'http://dreamersdoers.ning.com/main/authorization/signUp?');
		}
		else { //they are registered
			allow_reg_click = true;
			$('.joincom').click(function() {
				if (allow_reg_click) {
				allow_reg_click = false;
				$('#splash_box').append('<div class="alreadyreg" style="position: absolute; top: 100px; left: 600px; background: url(http://images.marthastewart.com/images/assets/channel/ning/cloud.png) no-repeat; width: 150px; height: 218px; padding: 55px 30px 20px 20px; text-align: center; font-weight: bold;">You Are Already Registered and have joined the community!</div>');
				$('.alreadyreg').fadeOut(7000, function() {
					allow_reg_click = true;
				});
				}
				return false;
			});
		}
		hdrs = $('.xg_module_head h2');
		$.each(hdrs, function() {
			if ($(this).html() == 'Forum') {
				$(this).html('Message Boards');
			}
		});
	}
	
	
	/*Members*/
	
	if ($('.xg_widget_profiles_members').length > 0 || $('.xg_widget_profiles_friend').length > 0) {
		$('.navigation:not(.byline) li:nth-child(1)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/user_female.png) no-repeat');
		$('.navigation:not(.byline) li:nth-child(2)').css('background', 'url(http://images.marthastewart.com/images/assets/channel/ning/user_heart.png) no-repeat');

	}
	
	/*all pages*/
	$('#xg').css('position', 'relative').append('<a href="http://www.marthastewart.com" class="mslolink">MarthaStewart.com</a>');
	
	/*My Settings*/
	if (	(
			$('.xg_widget_profiles_settings').length > 0 ||
			$('.xg_widget_profiles_profile_privacySettings').length > 0 ||
			$('.xg_widget_profiles_profile_emailSettings').length > 0 
			
			)
			&& $('.page_tickers li').length == 4
		) 
		
	{
				
				$('.page_tickers li').eq(1).hide();
	}
	
});

function gup( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}
