$(document).ready(loadAnimation);

function loadAnimation() {	
	$("#dynamic_content").jCarouselLite({
		btnNext: ".next",
        btnPrev: ".prev",
	    auto: 4000,
	    speed: 2000,
	    visible: 1
	});
	/*$('#dynamic_content').cycle({ 
    	fx:    'scrollRight'
	});*/
	$('.product_image').hover(
      function () {
        $('#dynamic_content')[0].pause = 1;
      }, 
      function () {
        $('#dynamic_content')[0].pause = 0;
      }
    );
}
