$(document).ready(function() {
	$('#slider_inner').scrollable({
		next : '.next',
		prev : '.prev',
		clickable: false
	})
	
	var restore = $('.item').children('img').width();

	$('.item').children('img').width(40);
	
	$('.item').mouseover(function() {
		$(this).children('img').stop().animate({
			width : 60,
			marginLeft:-30
		}, 100);
	});
	
	$('.item').mouseout(function() {
		$(this).children('img').stop().animate({
			width : 40,
			marginLeft:-20
		}, 100);
	});
	
});
