$(document).ready(function() {
	$('a.popupCurrencyConversionLink').bind('click', function(e) { popupWindow($(this).attr('href'), 'CurrencyConversion','width=760, height=330, scrollbars'); e.preventDefault(); });
	
	$('a.popupLink').bind('click', function(e) { popupWindow($(this).attr('href'), $(this).attr('title').replace(/[^A-z]/ig, ''),'width=500, height=600, scrollbars'); e.preventDefault(); });
	$('#memberPasswordResetSubmitLink').bind('click', function (e) { $('#memberLoginForm').attr('action', 'member/memberPasswordReset'); $('#memberLoginSubmit').click(); e.preventDefault(); });
	
	$('.cartCheckoutPaypal').bind('click', function (e) {
		e.preventDefault();
		$('#cartGiftCardForm').attr('action', 'index.php?do=cartPayPalGiftCardUpdate');
		$('#cartFormSubmit').click();
	});
});
