// file        : bannerslides.js
// version     : 1.00
// date        : 2011-11-10
// author      : uwe ruscheweyh
// description : slideshow in banner

// using jQuery.noConflict(); and jQuery instead of the shortcut $ to prevend namespace conflicts with other libraries
jQuery.noConflict();
jQuery(document).ready( function() {
    jQuery("#bannerslides").cycle({
    fx:      'fade',
	  timeout: 6000,
	  speed:   3000
	});
});
