$(document).ready(function(){
	$('#menu ul').children("li").each(function(){
		$(this).children('span').children('a').each(function(){
          	$(this).click(function(e){
				if($(this).attr('id') == 'switch_langs'){
				
				}
				else{
					e.preventDefault();
					var url = $(this).attr('href');
					var selected_item = this;
					$.get('content_' + url, function(data) {
						$('#primarycontent').html(data);
						$('.menu_current').attr('class', 'menu_default');
						$(selected_item).attr('class', 'menu_current');
						
						if(url == 'food_list.htm'){
							$('#content').height(2700);	
						}
						else if(url == 'wine_list.htm'){
							$('#content').height(2200);	
						}
						else if(url == 'gallery.htm' || url == 'gallery_en.htm'){
							$('#content').height(800);	
						}
						else {
							$('#content').height(470);	
						}
						
						if(url == 'gallery.htm' || url == 'gallery_en.htm'){
							 load_gallery();
							
						}
						
						if(url == 'contacts.htm')
							initialize();
					});
				}
			});   
		
		});
	});
});

