$(document).ready(function(){
/*
	$('#mycarousel').jcarousel({
		auto: 3,
		wrap: 'last',
		scroll:1,
        initCallback: mycarousel_initCallback
    });
*/
	$('#mycarousel').innerfade({ 
		speed: 2500, 
		timeout: 6000, 
		type: 'sequence', 
		containerheight: '320px' 
	}); 

// WORKAROUND - FIX!!!
    $("#birthdate")
	.inputLabel("tt.mm.jjjj")
	.datepicker({
		"dateFormat": 	"dd.mm.yy",
		"defaultDate": 	"-10y",
		"maxDate": 		"0",
		"changeMonth": 	true,
		"changeYear": 	true,
		"regional": 	"de",
		"yearRange": 	"1940:2009"
	});
});

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

