

$(document).ready(function() {

	$('#example li').focus(function() {
		var url = $('#'+$(this).attr('id')+' a').attr('href');
		var alt = $('#'+$(this).attr('id')+' img').attr('alt');
		var html = '<a href="'+url+'" target="_blank">'+alt+'</a>';
		$('#description').html(html).fadeIn(200);
	}).blur(function() {
		$('#description').fadeOut(100);
	});

	$('#example ul').show();
	$('#example ul').roundabout({
		easing: 'easeInOutBack',
		duration: 700
	});
});

