function wishlist(prod)
{
	$('#wishlist'+prod+' input[name=method]').val("ajax");
	
	var action = $('#wishlist'+prod+' input[name=action]').val();
	var source = $('#wishlist'+prod+' input[name=source]').val();
		
	var pars = $('#wishlist'+prod).serialize();
	
	if(source == "listing")
	{
		$('#listing-contents').load('/manage-wishlist.php',pars,
									function() {setTimeout("$('#update-message').fadeTo(1500,0.01)",2500);});
		
		if(action == "remove")
		{
			$('#sidemenu-contents').load('/includes/code/update-sidemenu.php');	
		}
	}
	else
	{
		$('#wish-'+prod).load('/manage-wishlist.php',pars);
	}
}