showPreorderBackorderMessage = function(href){
	$('#zmessenger').zmessenger('show', { width:350, html: '<h3>Pre-orders</h3><p>Please be aware that if you preorder an item it will not be shipped to you until the release date, but you will be charged for the order immediately. If you order a non-preorder item with a preorder, the non-preorder item will ship in the normal 1-2 weeks.</p><a href="' + href + '">Continue</a>' });
};

$(function(){
	$(".preorder").each(function(){
		var href = $(this).attr("href");
		$(this).attr("href", 'javascript:');
		$(this).bind('click', function(){showPreorderBackorderMessage(href);});
	});
});
