

function initialGallery(gal) {
	
	$(function() {		
		
		// initialize scrollable 
		$("div.scrollable").scrollable({
				size: 6,
			items: '.thumbs',  
			hoverClass: 'hover'
		});	

		$("#gallery-button-left").mouseover(function(){
			$(this).attr({ src: "/root/img/tpl/btn-left-hover.gif"})
		});

		$("#gallery-button-left").mouseout(function(){
			$(this).attr({ src: "/root/img/tpl/btn-left.gif"})
		});

		$("#gallery-button-right").mouseover(function(){
			$(this).attr({ src: "/root/img/tpl/btn-right-hover.gif"})
		});

		$("#gallery-button-right").mouseout(function(){
			$(this).attr({ src: "/root/img/tpl/btn-right.gif"})
		});
		
		$("#flagselements img").mouseover(function(){
			$("#flagsdescription").html( "<strong>"+$(this).attr("alt")+"</strong> (Click to see the members)" );							
			});
		$("#flagselements img").mouseout(function(){
			$("#flagsdescription").html("Click on a flag to see the members.");							
			});
		$("#flagselements img").click(function(){
			
			country = $(this).attr("name");
			$.get('/scripts/members.php', { "country": country }, function(data) {
  				$('#members').html(data);
				$('#members').fadeIn("slow");
				$('body').click(function(){fadeOut();});
			});

		});
		
		/*$('#'+gal+' a').lightBox({fixedNavigation:true});*/

	
	});
}
function fadeOut() {
		$('#members').fadeOut("fast");
		
		
	}



