jQuery(function(){
	Galleria.loadTheme('js/galleria/themes/classic/galleria.classic.js');	
	jQuery('#screenbox input').click(function(){
				var id = jQuery(this).attr("id");
				jQuery('#screenbox input').removeClass('catActive');
				jQuery(this).addClass('catActive');
				jQuery.getJSON(
					'js/ajax/screenshots.php',
					'json=1&cat='+id,
					function(data){
						
						jQuery('#gallery').galleria({
							data_source: data.screenshots,
							height:450,
							transition: 'fade',
							autoplay: true,
							carousel_steps: 4,
							carousel_speed: 100,
							popup_links: true,
							transition_speed: 800,
							on_image: function(image,thumb){
									/* alert(image.src); */
								
							}
						});	
						
					}
				);							  
							   
	});
	jQuery.getJSON(
		'js/ajax/screenshots.php',
		'json=1&cat=cat1',
		function(data){
			
			jQuery('#gallery').galleria({
				data_source: data.screenshots,
				height:450,
				transition: 'fade',
				autoplay: true,
				carousel_steps: 4,
				carousel_speed: 100,
				popup_links: true,
				transition_speed: 800
			});	
			
		}
	);	
				
});
					  

