$(document).ready(function() {
	$("li.addToFavourites a").click(function() {
		if(!$("body.loggedIn")[0]) {
			if(confirm('You need to log in or register to record your favourite suppliers.\n\nDo you want to do this now\?')){
				window.location='/login.asp?fromPage='+encodeURI(window.location);
			} else {
				return false;
			} 
		}
				
		var id = $(this).parents(".Listings").attr("id").replace("supplier-", "");
		var par = $(this).parent();
		$.post("/wedding/favourites.asp", {chkSupplier: id, chkCategory: 0, "hidSubmitted": "addSupplierIDsToFavourites"}, function() { 		
			par.removeClass("addToFavourites");
			par.addClass("favourite");
			par.html("<a href='/planning/wedding_planner.aspx'>See Favourites</a>");
			par.effect("highlight");
		});

		return false;
	});
});