//Reqiures jQuery
// <script src="../../plugins/wishlist/wl_js.js" type="text/javascript"></script>
/*
	/wp-content/plugins/wishlist/
*/
function wishlist_add_remove(){
	$('.wishlist_post_form .wishlist_post_submit').click(wishlist_update);
	}

function wishlist_update(event){
	event.preventDefault();
	var currentTarget = event.target;
	$.post(
		'http://' + location.host + '/wp-content/plugins/wishlist/wl_async.php'
		,
		$(currentTarget).parent().serialize()
		,
		function(data){
			if(data == 'removed'){
				$(currentTarget).parent().children('.wishlist_post_submit').addClass('add').removeClass('remove');
				$(currentTarget).parent().children('.wishlist_hidden_submit').attr({'value':'Add'});
				$(currentTarget).parent().children('.wishlist_post_submit').attr({'title':'Add'});
				}
			else{
				$(currentTarget).parent().children('.wishlist_post_submit').addClass('remove').removeClass('add');
				$(currentTarget).parent().children('.wishlist_hidden_submit').attr({'value':'Remove'});
				$(currentTarget).parent().children('.wishlist_post_submit').attr({'title':'Remove'});
				}
			return false;
			}
		);
	}


$(document).ready(wishlist_add_remove);