$(document).ready(function () 
{
	eventsGallery = new Gallery('events_galleries_pane', 'eventsGallery', 1001);
	eventsGallery.get(0,1);
	
	$('.a_event_gallery_wstecz').live('click', function(e)
			{
				var params = this.id.split('|', 3);
				eventsGallery.get(params[1],params[2]);
			});	
	
	$('.a_event_gallery_dalej').live('click', function(e)
			{
				var params = this.id.split('|', 3);
				eventsGallery.get(params[1],params[2]);
			});
	
	$('.a_event_gallery_switch_order').live('click', function(e)
			{
				var params = this.id.split('|', 3);
				eventsGallery.get(params[1],params[2]);
			});

	
	artistsGallery = new Gallery('artists_galleries_pane', 'artistsGallery', 1002);
	artistsGallery.get(0,1);
	
	$('.a_artist_gallery_wstecz').live('click', function(e)
			{
				var params = this.id.split('|', 3);
				artistsGallery.get(params[1],params[2]);
			});	
	
	$('.a_artist_gallery_dalej').live('click', function(e)
			{
				var params = this.id.split('|', 3);
				artistsGallery.get(params[1],params[2]);
			});
	
	$('.a_artist_gallery_switch_order').live('click', function(e)
			{
				var params = this.id.split('|', 3);
				artistsGallery.get(params[1],params[2]);
			});

	
	djsGallery = new Gallery('djs_galleries_pane', 'djsGallery', 1003);
	djsGallery.get(0,1);
	
	$('.a_dj_gallery_wstecz').live('click', function(e)
			{
				var params = this.id.split('|', 3);
				djsGallery.get(params[1],params[2]);
			});	
	
	$('.a_dj_gallery_dalej').live('click', function(e)
			{
				var params = this.id.split('|', 3);
				djsGallery.get(params[1],params[2]);
			});
	
	$('.a_dj_gallery_switch_order').live('click', function(e)
			{
				var params = this.id.split('|', 3);
				djsGallery.get(params[1],params[2]);
			});
});
