/*	ROUTINES										   						   															*/

	jQuery(document).ready(function(){
		
		//plan hover
		jQuery(function () {
			jQuery('.word').hover( 
			function () { 
				jQuery(this).find('.bubble_container').css({"display":"block"});
			}, function () {
				jQuery(this).find('.bubble_container').css({"display":"none"});
			});
		});
		
	});//end Document Ready
