 var absa = {
 	navRoll:function(id,state) {
		if($(id)) {
			if (state=='on') {
				$(id).src = 'images/'+id+'On.gif';
			}
			else if (state=='on_as') {
				$(id).src = 'images/'+id+'On_as.gif';
			}
			else
			{
				$(id).src = 'images/'+id+'Off.gif';
			}
		}
	},
	manageData: function(id, action, itemType, elementId) {
		if (action == 'delete') {
			var answer = confirm("Are you sure you want to delete this item?");
			if (answer) {
				if (itemType == 'adoption') {
					window.location = "accountMain.php?action=delete&adoptionId="+id;
				}
				else if (itemType == 'news') {
					window.location = "accountMain.php?action=delete&storyId="+id;
				}
				else if (itemType == 'seo') {
					window.location = "accountMain.php?action=delete&seoId="+id;
				}
				
			}
			else {
				return;
			}
		}
		else if (action == 'edit') {
			var adoptionToEdit = "adoption"+id;
			document.getElementById(adoptionToEdit).submit();
		}
		else {
			return;
		}
	}
 }



