//carousel rotator
$(document).ready(function() {
    // remove misc hidden inputs from 7.65 ContentLists
    var container = document.getElementById('ctl00_CphMain_AdRotator1_LsSponsorBanners');
    var inputs = new Array();
    if(container != null) {
        for (var node in container.childNodes)
        {
            if (container.childNodes[node].nodeName == "INPUT") {
                //alert(container.childNodes[node].id);
                inputs[node]=document.getElementById(container.childNodes[node].id);
            }
        }
        for (var input in inputs) {
            if (input.length > 0) container.removeChild(inputs[input]);
        }
    }
    // load cycle fade
	$('.carousel-right').cycle({
		fx:'fade',
		speed: 800,
		timeout: 5000
	});
	//$('#carousel-nav a').click(function() {
	//	$('.carousel-right').cycle('stop');
	//});
});