// JavaScript Document

(function($){
	$.fn.feature = function(options) {
		var defaults = {
			'posX' : 0,
			'posY': 0
		};
		
		var setting = $.extend(defaults, options);
		
		$("dt", this).each(function(i){
			
			var target = $(this);
			var content = $(this).next();
			
			content.css({ "display": "none", "position": "absolute", "top": setting['posX'], "left": setting['posY'] });
			
			target.hover(function(i) {
				content.show()
			}, function(i) {
				content.hide();
			});
			
			content.hover(function(i) {
				content.show();
			}, function(i) {
				content.hide();
			});
			
		});
		
	};
})(jQuery);

