$(document).ready(function() {
    $('#banner').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		before: onBefore,
		after: onAfter 
	});
});

function onAfter() {
	//console.log("Current anchor: " + this);
	$(this).siblings().css('display', 'none');
} 
function onBefore() {
	//console.log("Current anchor: " + this);
	$(this).css('display', 'block');
} 

//

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
		scroll:4,
		auto: 4,
        wrap: 'last'	});
});
