// JavaScript Document


$(document).ready(function() { 
	$(".js_btn").live("click",function(event) {
		event.preventDefault();
		eval($(this).attr("href"));
	});	
});	
		
	
function addToRegistry(product_id) {
	var url = "/gift_registry/admin/ajax/modify.aspx?add_id=" + product_id + "&n=1"	
	$.ajax({
		url: url,
		cache: false,
		dataType: "json",
		success: function(data) {
			if(data.success == 1) {
				 $("#add_registry").hide().css({"background-image": "url(/images/btn_RegDone.gif)"}).fadeIn(800);
				 $("#add_registry").click(function() { return false; });
			} else {
				alert(data.message);
//				notice("#update", data.notice, data.message);
			}
		},
		error: function() {
			alert("URL not found");			
//			notice("#update", "error", "Error connecting to server");				
		}
	});
	
}
