function homeCarousel() {
    $(".carousel").livequery(function() {
        var carouselHeight = 0;
        var carLargestHeight = 0;
        $('.carousel ul li').each( function() {
        	carouselHeight = $(this).height();
			carLargestHeight = carouselHeight > carLargestHeight ? carouselHeight :  carLargestHeight;
        }).height(carLargestHeight);

        $(".carousel").jCarouselLite({
            btnNext: ".next",
            btnPrev: ".previous"
        });
    });
}



$(document).ready(function() {
	homeCarousel();
});

function pageLoad(sender, args) {
    if (args.get_isPartialLoad()) {
		homeCarousel();
    }
}