
$(document).ready(function(){

$(".step").hide();
$("#step1.step").show();

//horni menu

$("#link1").click(function(){$(".step").hide();$("#step1").show();});
$("#link2").click(function(){$(".step").hide();$("#step2").show();});
$("#link3").click(function(){$(".step").hide();$("#step3").show();});
$("#link4").click(function(){$(".step").hide();$("#step4").show();});
$("#link5").click(function(){$(".step").hide();$("#step5").show();});
$("#link6").click(function(){$(".step").hide();$("#step6").show();});

//step 1
$("#step1 .nextlink").click(function(){$(".step").hide();$("#step2").show();});

//step 2
$("#step2 .prevlink").click(function(){$(".step").hide();$("#step1").show();});
$("#step2 .nextlink").click(function(){$(".step").hide();$("#step3").show();});

//step 3
$("#step3 .prevlink").click(function(){$(".step").hide();$("#step2").show();});
$("#step3 .nextlink").click(function(){$(".step").hide();$("#step4").show();});

//step 4
$("#step4 .prevlink").click(function(){$(".step").hide();$("#step3").show();});
$("#step4 .nextlink").click(function(){$(".step").hide();$("#step5").show();});

//step 5
$("#step5 .prevlink").click(function(){$(".step").hide();$("#step4").show();});
$("#step5 .nextlink").click(function(){$(".step").hide();$("#step6").show();});

//step 6
$("#step6 .prevlink").click(function(){$(".step").hide();$("#step5").show();});

});
