/* Call on Document load */

$.noConflict();
jQuery(document).ready(function($) {
    slideshow();
});

/* Effect Functions */


function slideshow() {
jQuery('#slideshow').cycle({ 
    fx:    'fade', 
    speed:  3500 
 });	
}
