function initScrolling(){
/*	var browser = navigator.appVersion;
	if(browser.indexOf("MSIE 6")!=-1)
	{
		$("#scrolling_wrapper").jCarouselLite({
			visible:1,
			//vertical:true,
			btnPrev: "#right_arrow",
			btnNext: "#left_arrow",
			auto:0,
			speed:400,
			circular: true
			});
		}
	else 
	{
		$("#scrolling_wrapper_ul").jcarousel({
			auto:0,
			scroll: 1,
			buttonNextHTML: null,
			buttonPrevHTML: null,
			wrap: 'circular',
			initCallback: mycarousel_initCallback
		});
	}*/
			$("#scrolling_wrapper").jCarouselLite({
			visible:1,
			//vertical:true,
			btnPrev: "#right_arrow",
			btnNext: "#left_arrow",
			auto:0,
			speed:400,
			circular: true
			});
}

/*function mycarousel_initCallback(carousel) {
    $("#left_arrow").bind('click', function() {
        carousel.next();
        return false;
    });

    $("#right_arrow").bind('click', function() {
        carousel.prev();
        return false;
    });
};*/
