var webRoot = 'http://www.riche.net/wedding/';

$(document).ready(function() {
	setTimeout('hideAddThis()', 50);
	markOnState();
});

function markOnState() {
	var list = $('.nav');
	list.each(function() {
		var obj = $(this);
		var objChild = obj.children().first();
		var url = objChild.attr('href');
		if ((webRoot + url) == document.location || (url == 'index.html' && document.location == webRoot)) {
			obj.addClass('onstate');
			objChild.addClass('onstate');
		}
	});
}

function hideAddThis() {
	var obj = $('.snap_noshots');
	if (obj.length == 0) {
		setTimeout('hideAddThis()', 50);
	} else {
		obj.parent().hide();
	}
}

