$(document).ready(function(){
    if( $('a.galleryList').length ){
        $('a.galleryList').colorbox({rel:'gal'});
    }
    
    if( $('a.gallery').length ){
        $('a.gallery').colorbox({rel:'gal'});
    }

    var slideshow = $("#slideshow");
    if( slideshow.length ){
        slideshow.skitter({
            animation : 'randomSmart',
            interval  : 5000,
            velocity : 4,
            navigation: false
            
        });
    }
});

