$(document).ready(function(){
	$('.keyword').children().hide();
	$('#keytext').hide();

	$(document).ready(function(){
		$('.small').click(function(){
			if($(this).next().is(':visible')){
				$(this).next().hide('slow');

				return false;
			}
			$('.big').hide('slow');
			$(this).next().show('slow');

			return false;
		});
		$('.big').click(function(){
			$(this).hide('slow');
		});
	});

	$('.keyword').hover(
		function(){
			$('#keytext').attr({
				style: $(this).children().attr('style')
			});
			$('#keytext').html($(this).children().html()).append('<div class="clear"></div>').fadeIn();

			return false;
		},
		function(){
			$('#keytext').fadeOut();

			return false;
		}
	);

	return false;
});