jQuery.noConflict();
jQuery(document).ready(function($){
    
    // gallery
    $('#rotatingImages').cycle({ 
        fx:    'fade', 
        speed:  7500,
        random: 1
     });
     
    // lightbox
    $('a[@rel*=lightbox]').lightBox({
			imageLoading:			'/fileadmin/layout/bc/img/lightbox/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'/fileadmin/layout/bc/img/lightbox/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'/fileadmin/layout/bc/img/lightbox/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'/fileadmin/layout/bc/img/lightbox/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'/fileadmin/layout/bc/img/lightbox/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)        
			saveImage:              true
    });    
});