/*
 Javascript Library for Bialorus.pl
 Copyright (c) 2009 Aleksander Maksymiuk, http://setpro.net.pl/
*/

jQuery(document).ready(function() {
    // ColorBox triggerers -> single photo
    jQuery('a.media_photo_main').colorbox();
    // -> group of files/streams
    jQuery('a[rel="media_photo"]').colorbox();
    jQuery('a[rel="media_photo_gallery"]').colorbox({slideshow: true});
    jQuery('a[rel="media_sound"]').colorbox();
    jQuery('a[rel="media_video"]').colorbox();
    jQuery('a[rel="media_youtube"]').colorbox({iframe: true, width: 603, height: 510}); /* 13:11 */
    jQuery('a[rel="media_outsite"]').colorbox({iframe: true, width: '80%', height: '80%'});
    // -> outside HTML site
    jQuery('a.outsite').colorbox({iframe: true, width: '80%', height: '80%'});

});

