/* 	USER EXPERIENCE	Here go all the functions that handle the users general experience on the site.*//** * Toggles the display of extra information needed to select an offer * @target --> the id of the extras object to display */function showOfferExtras(target){	//var hide = new Array('input_1_extra', 'input_2_extra', 'input_3_extra', 'input_4_extra', 'input_6_extra','input_10_extra');	//for (i in hide) $('#'+hide[i]).hide();	$('.offerte_extra').hide();	$('#'+target).show();}
