// Ride the carousel...
jQuery(document).ready(function() {
    jQuery("#cycle img").attr("height", 400).attr("width", 600);
    jQuery("#cycle").cycle({
		fx: 'fade',
		speed: 600,
		containerResize: false	
});
});


