function attach_how_to_wear_steps_actions() {
	$(".steps2 a.next, img.step").click(function() {
		var target = '#'+$(this).attr('rel');
		$("div.steps2").fadeOut(100, function() {
			$("div.steps2").html($(target).html()).fadeIn(300);
			attach_how_to_wear_steps_actions();
		});
	});
}

$(function (){
	attach_how_to_wear_steps_actions();
})