$(function() {
	$("#next_button, #prev_button").hover(
		function(){
			$(this).addClass('button_hover').removeClass('button_plain');
		},
		function(){
			$(this).addClass('button_plain').removeClass('button_hover');
		}
	);

    $("#carousel").jCarouselLite({
        btnNext: "#next_button",
        btnPrev: "#prev_button",
        auto:500,
        speed:1000,
	visible: 5
    });
});


