$.jPrompt = jPrompt
$(function() {
	$("a[rel^=gallery]").fancybox({
		'titlePosition'  : 'inside'
	});
	$('#printbox a').fancybox({
		'titleShow' : false,
		'type' : 'iframe',
		'width' : '75%',
		'height' : '90%'
	});
	$('.specialcarte').click(function() {
		var thisurl = $(this).attr('href');
		jPrompt('Entrez votre code postal:', '', 'Informations', function(r) {
			if( r ) location.href=thisurl+r;
		});

		return false;
	});
});
