$(document).ready(function() {
	//$('#choose-room .room-wrapper:first-child .img-inactive').click();
	
	$('.img-inactive').click(function(e){
		e.preventDefault();
		$('#choose-room div').removeClass('room-active');
		$(this).parent().addClass('room-active');
		
		var currentId = $(this).attr('id');
		/*$('#selected-room').val(currentId);*/
		
		$('.setup').hide();
		$('#note-'+currentId).show();
		
		$('.cpa-steps').hide();
		$('#steps-'+currentId).show();

		$('html,body').animate({scrollTop: 1350}, 'slow');
	});
});
