$(document).ready( function() {
	
	$('#cycle li').each(function() {
		
		var i = $(this).children('img').attr("src");
		// console.log(i);
		
		$(this).css({'background':'url('+ i +') no-repeat 50% 50%'})
			.children('img').remove();
	});
	
	$('.kohdeinfo').append('<a href="#" class="arrow back">«</a><a href="#" class="arrow forward">»</a>');
	
	$('#cycle').cycle({
		speed: 2000,
		next: '.forward', 
		prev: '.back',
		pause: 1
		});
	
});
