var number_food_list = 4;
var first_food_list = 0; 

$(document).ready(function(){
	$('#interesting_1').html(interestings[0]);
	$('#interesting_2').html(interestings[1]);
	$('#interesting_3').html(interestings[2]);
	$('#interesting_4').html(interestings[3]);

	$('#food_list_left').css('display','none');
	if(interestings.length <= 4){
		$('#food_list_right').css('display','none');
	}
});
function food_list(type){
	switch(type){
		case 'right':
			first_food_list++;
		break;
		case 'left':
			first_food_list--;
		break;
	}
	$('#interesting_1').html(interestings[first_food_list]);
	$('#interesting_2').html(interestings[first_food_list+1]);
	$('#interesting_3').html(interestings[first_food_list+2]);
	$('#interesting_4').html(interestings[first_food_list+3]);
	
	if(first_food_list > 0){
		$('#food_list_left').css('display','block');
	} else {
		$('#food_list_left').css('display','none');
	}
	if((first_food_list + number_food_list) >= interestings.length){
		$('#food_list_right').css('display','none');
	} else {
		$('#food_list_right').css('display','block');
	}		
}	