function next_item(){
    var w=960;//$('.conveyor').children(':first').attr('width');
    $('.conveyor').animate({
	'marginLeft' : '-'+w+'px'
    },400,function(){
	$(this).children(':first').appendTo(this);
	$(this).css({
	    'marginLeft' : '0px'
	});
    });
    return false;
}

function previous_item() {
    var w=960;//$('.conveyor').children(':last').attr('width');
    $('.conveyor').animate({
	'marginLeft' : '-'+w+'px'
    },0,function(){
	$(this).children(':last').prependTo(this);
	$(this).animate({
	    'marginLeft' : '0px'
	},400);
    });
    return false;
}

$(document).ready(function(){
    $('.conveyor').children().css({
        'float' : 'left',
	'marginRight' : '10px'
    });
    
    $('.arrowright').click(next_item);
    $('.arrowleft').click(previous_item);
    
    $('.arrowright').click(function(){
	clearInterval(interval);	
    });
    
    $('.arrowleft').click(function(){
	clearInterval(interval);	
    });
    
    $('input[name="icridno"]').focus(function(){
	clearInterval(interval);	
    });
    
    
    
    
});

