$(document).ready( function(){
	$("div.delivery a").click( function(){
		var theMethod = $(this).attr("title");
		
		$("div.delivery p.delivery_method:not(#"+theMethod+")").slideUp("fast");
		$("div.delivery p#" + theMethod).slideDown("fast");		
	});
});