jQuery(document).ready(function(){	
    // Wysuwane menu gier
	jQuery("div.game_panel_button").click(function(){
		jQuery("div#game_panel").animate({
			height: "450px"
		})
		.animate({
			height: "370px"
		}, "fast");
		jQuery("div.game_panel_button").toggle();
	
	});	
   jQuery("div#game_hide_button").click(function(){
		jQuery("div#game_panel").animate({
			height: "0px"
		}, "normal");
  		
   });	
   
   // Lista gier
   jQuery('div.game_list_alphabet a').click(function() { 
				var content_show = jQuery(this).attr("id"); 
				  jQuery.ajax({
						method: "get",
						url: site_url + "/ajax/gamemenu",
						data: jQuery.param({letter: content_show}),
						beforeSend: function(){ jQuery("div.game_list_more").fadeOut(0); jQuery("div.game_menu_column").fadeOut(0); jQuery("div#game_loading").fadeIn(0).css('visibility', 'visible');}, 
						complete: function(){ jQuery("div#game_loading").fadeOut(0);},
						success: function(html){ 
						   jQuery("div.game_list_more").fadeIn(0); 
						   jQuery("div.game_menu_column").fadeIn(0); 
						   jQuery("div.game_list_more").html(html); 
				        }
			         }); 
    }); 
});