jQuery(document).ready(function() {	
	jQuery("#scroll").jCarouselLite({ visible: 1, auto: 6000, speed: 1000, btnGo:
    [".scroll_buttons .1", ".scroll_buttons .2",
    ".scroll_buttons .3", ".scroll_buttons .4"] });
});

function highlight(carousel, obejctli,liindex,listate)
{
	jQuery('.scroll_buttons a:nth-child('+ liindex +')').attr("class","selected");
};
function removehighlight(carousel, obejctli,liindex,listate)
{
	jQuery('.scroll_buttons a:nth-child('+ liindex +')').removeAttr("class","selected");
};
