function carousel_initCallback(carousel)
{ 
    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

$(document).ready(function(){
	
	$(document).ready(function() {
		$('#bannercarousel').jcarousel({
		    auto: 10,
		    scroll:1,
		    wrap: 'last',
		    initCallback: carousel_initCallback
		});
	});

	$(".searchinput, .inputtext input, .inputtextarea textarea").hint();
});

