$(document).ready(function () {

	$('.b-bank-cards-to-courier a').click(function (e) {
		e.preventDefault();
		$('.b-bank-cards-to-courier-info').modal();
	});
	
		$('.b-express-delivery a').click(function (e) {
		e.preventDefault();
		$('.b-express-delivery-info').modal();
	});
	
		$('.b-giftpack a').click(function (e) {
		e.preventDefault();
		$('.b-giftpack-info').modal();
	});
	

		$('#schema a').click(function (e) {
		e.preventDefault();
		$('#schema-info').modal();
	});
	
		$('.pickup a').click(function (e) {
		e.preventDefault();
		$('.b-pickup').modal();
	});
	
		$('.avail a').click(function (e) {
		e.preventDefault();
		$('.b-stores-available').modal();
	});
	

});

