$(document).ready(function() {
	$('#home_gallery').cycle({ 
		timeout: 5000, 
		speed: 1000,
		delay: 0
	});
	
	$('#home_gallerystrip img').mouseover(function() {
		var id = $(this).attr('id');
		var idSplit = id.split('_'); 
		var imageIndex = parseInt(idSplit[2]);
		$('#home_gallery').cycle(imageIndex);
	});
});
