// add click handlers
//function swapImages(){
//var $active = $('#mainlogo .active');
//var $next = ($('#mainlogo .active').next().length > 0) ? $('#mainlogo .active').next() : $('#mainlogo img:first'); $active.fadeOut(1500,function(){ $active.removeClass('active'); $next.fadeIn(2500).addClass('active');});
//}
// Run our swapImages() function every 
//setInterval('swapImages()', 5000);

$(function() {
    $('#mainlogo').cycle({
	timeout:       3500
	});
});

