function facebook_postToWall(imageSRC, costumeURL1, costumeName1, costumeURL2, costumeName2, costumeURL3, costumeName3, costumeURL4, costumeName4) {
	var listItems = [{text: costumeName1, href: costumeURL1}];
	var description = "What do you think?";

	if (costumeURL2.length > 0 && costumeName2.length > 0) listItems[listItems.length] = {text: costumeName2, href: costumeURL2};
	if (costumeURL3.length > 0 && costumeName3.length > 0) listItems[listItems.length] = {text: costumeName3, href: costumeURL3};
	if (costumeURL4.length > 0 && costumeName4.length > 0) listItems[listItems.length] = {text: costumeName4, href: costumeURL4};
	
	if (listItems.length > 1) description = "Help me out below and pick what you think I should be!";
	
	FB.ui(
		{
			method: "feed",
			link: costumeURL1,
			picture: imageSRC,
			name: costumeName1,
			caption: "I just brewed my costume with Party City and my result for Halloween is a " + costumeName1 + ".",
			description: description,
			properties: listItems
		},
		function(response) {
			if (response && response.post_id) {
				//alert('Post was published.');
				//_gaq.push(['_trackEvent', 'Share', 'Post To Wall', 'Message ' + postId]);
			} else {
				//alert('Post was not published.');
			}
			return true;
		}
	);
}

function showCoupon() {
//	setTimeout("jQuery.facebox({ ajax: 'coupon.html' })", 3000);
	jQuery.facebox({ ajax: 'coupon.html' });
	
	return true;
}

