$(document).ready(function(){ 	
 	// ### Offer-Hover ### //
 	$(".offer")
		.mouseover(function (){$(this).addClass("hover");})
		.mouseout(function (){$(this).removeClass("hover");});
		
  $('.pic_wall > div > a').hover(
 		function(){$('#' + $(this).attr('rel')).show();},
 		function(){$('.pic_wall > div > img').not('#prom,#start_browse').hide();}
  );
});

function goto_manual(step){
	$(".man_step").hide();
	$("#man_step"+step).show();
	window.scrollTo(1,1);
}

