/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
    $('.gallery').click(function(){
        swtichGallery($(this).attr('id').replace('gallery_',''));
    });
    $('.gallery_images:first').show();
    $('.gallery_images a').lightBox();
});

function swtichGallery(galleryName) {
    //alert(galleryName);
    if($('#gallery_images_'+galleryName).css('display')=='none') {
    $('.gallery_images').fadeOut('fast');
    $('#gallery_images_'+galleryName).fadeIn('fast'); 
    $('.gallery_images').dequeue();
    }
}

