function mycarousel_initCallback(carousel)
{
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};


jQuery(document).ready(function() {
  
	
	
	
	
	$('.item1 .product').eq(0).css('margin-left', '30px');
	$('.item2 .product').eq(0).css('margin-left', '30px');
	$('.item3 .product').eq(0).css('margin-left', '30px');
	$('.item5 .product').eq(0).css('margin-left', '30px');
	$('.productLine .product').eq(0).css('z-index', '6');
	$('.productLine .product').eq(1).css('z-index', '5');
	$('.productLine .product').eq(2).css('z-index', '4');
	$('.productLine .product').eq(3).css('z-index', '3');

});
