/**
 * Lance les fonctions nécessaires au chargement de la page
 */ 
 
jQuery.noConflict();
 
jQuery(document).ready(function(){    
	/**
	* Gère l'impression
	*/
	jQuery('#imprimer').click(function () {
		window.print();
		return false;
	});
	
	jQuery('#adresseIdentique').click(function () {
			jQuery('#commande_facturation_adresse1').attr('value', jQuery('#commande_livraison_adresse1').attr('value'));
			jQuery('#commande_facturation_adresse2').attr('value', jQuery('#commande_livraison_adresse2').attr('value'));
			jQuery('#commande_facturation_cp').attr('value', jQuery('#commande_livraison_cp').attr('value'));
			jQuery('#commande_facturation_ville').attr('value', jQuery('#commande_livraison_ville').attr('value'));
	});
	
});
