jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
		wrap:"both",
		auto:1,
		scroll:1,
		animation:"slow"
	});
});

jQuery(document).ready(function() {
    jQuery('#mycarousel-flist').jcarousel({
		wrap:"both",
		scroll:1,
		animation:"fast"
	});
	
	function mycarousel_initCallback(carousel) {
		jQuery('http://wpjunction.com/themes/prozine/.mh-entry .next').bind('click', function() {
			carousel.next();
			return false;
		});

		jQuery('http://wpjunction.com/themes/prozine/.mh-entry .prev').bind('click', function() {
			carousel.prev();
			return false;
		});
	};
	jQuery('#feature-carousel').jcarousel({
		wrap:"both",
		scroll:1,
		auto:10,
		initCallback: mycarousel_initCallback,
		buttonNextHTML: null,
		buttonPrevHTML: null
	});});