// JavaScript Document
$.noConflict();
 
 jQuery(document).ready(function($) {
								 
    $('#staticslide').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 1000,
        autostop: 1,
        autostopCount: 2
	});
	
    $('#slideshow').cycle({
		random: 1,
        fx:     'fade',
        speed:   2000,
        timeout: 4000
    });
	
});
