$(document).ready(function() {


	sameHeight("#highlights h3");

});

function mycarousel_initCallback(carousel)
{
	jQuery('.jcarousel-control a').bind('click', function() {
		carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
		carousel.startAuto(0);
		return false;
	});

	// Pause autoscrolling if the user moves with the cursor over the clip.
	carousel.clip.hover(function() {
		carousel.stopAuto();
	}, function() {
		carousel.startAuto();
	});
};

jQuery(document).ready(function() {
	jQuery('#mycarousel').jcarousel({
		auto: 5,
		wrap: 'last',
		initCallback: mycarousel_initCallback,
		scroll: 1,
		buttonNextHTML: null,
		buttonPrevHTML: null,
		visible:1
	});
});