// JavaScript Document
$(function () {
	$('.submenu').each(function () {
		$(this).parent().eq(0).hover(
			function () {
				$('.submenu:eq(0)', this).show();
			}, function () {
				$('.submenu:eq(0)', this).hide();
			}
		);
	}
	);
});
$(function(){
	var removeLink = ' <a class="remove" href="#" onclick="$(this).parent().slideUp(function(){ $(this).remove() }); return false">remove</a>';
	$('a.add').relCopy({ append: removeLink}); 
});
