$(document).ready(function() {

	$("#shareMenu a.social").click(function(event){
		var shareType = $(this).attr("rel");
		var title = "Miranda's Closet at TheFabricOfMyLife.com";
		Utils.sharePage(shareType, title, null);
		event.preventDefault();
	});
	
	// Initialize the send popup link.
	$("#shareMenu .send a").click(function(event) {
		Utils.sharePage("send", null, null);
		event.preventDefault();
	});
});