// JavaScript Document

	$(document).ready(function(){
		$('div[name="require"]').each(function(index)	{
			$(this).hover(function(event){
				$(this).children().show();
			}, function(event){
				$(this).children().hide();
			});
		});
	});
