// Little Tree Software// JavaScript Framework based on JQuery and a collection of JQuery Plugins$(function() {	$('body').addClass("js");	$('a.external').attr("target", "_blank");	$.lts.navigation();	$.lts.tips();	});(function ($) {    $.lts = {				navigation: function() {			$('.navigation ul li').hover(function() {$(this).addClass("over")},function() {$(this).removeClass("over")});			$(".navigation ul li ul").each(function (i) {				$(this).parent().addClass('children');								 			});		},				tips: function tips() {				$('.tooltip').qtip({				position: {				  corner: {					 target: 'topMiddle',					 tooltip: 'bottomMiddle'				  }				},				style: { 					padding: 5,					background: '#CC00FF',					color: '#fff',					border: {						width: 3,						color: '#CC00FF'					},					tip: { 						corner: 'bottomMiddle', 						color: '#CC00FF',						size: {							x: 8, 							y : 8 						}					}				},				show: {					delay: 0,					when: {						event: 'mouseover'						}				},								hide: 'mouseout'								}				);					}				  	}		   })(jQuery);