$(document).ready(function() {
	
	$('#pg blockquote').click(function() {
		if($(this).children('p').css('display') == "none") {
			$(this).children('p').show('slow');
			$(this).children('img').show('slow');
		} else {
			$(this).children('p').hide('slow');
			$(this).children('img').hide('slow');
		}
	});
	
	$('#form_auberge #nb_jour').bind('textchange', function (event, previousText) {
		
		var nb_po_per_day = 2;
		
		if($('#form_auberge input#a_cheval').val() != 0) {
			nb_po_per_day = 3;
		}
		
		var po = nb_po_per_day*$(this).val();
		
		$('#form_auberge span#prix').html('');
		
		if ($(this).val() >= 5 && $(this).val() <= 75) {
			$('#form_auberge span#prix').html('Il vous en coûtera <strong>'+po+'</strong> PO');
		}
	});
	
});
