$.fn.swedHelp = function() {
	var pos = $(this).position();
	var t = "";
	$(this).hover(
		function(e){
			t = $(this).attr("alt");
			$(this).after("<div "
				+"class='swedTemp' "
				+"style='"
					+"left:"+(pos.left+116)+"px;"
					+"top:"+(pos.top)+"px'"
				+">"+t+"</div>"
			);
			$(".swedTemp").animate({height: 'toggle'},500);
		},
		function(){
			$(".swedTemp").detach();
}	);	};

$.fn.swedHelp2 = function(x,y) {
	$(this).each(function(e) {
		var pos = $(this).position();
		var left = pos.left + x;
		var top = pos.top + y;
		var alt = "";
		alt = "<span class='grey'>(" + $(this).attr("alt") + ")</span>";
		$(this).after("<div "
			+"class='swedTemp2' "
			+"style='"
				+"left:"+left+"px;"
				+"top:"+top+"px'"
			+">"+alt+"</div>"
		);
		$(".swedTemp").animate({height: 'toggle'},500);
	});
};

$(document).ready(function() {
	$(".swedHelp").swedHelp();
	$(".swedHelp2").swedHelp2(155,3);
});
