function tooltipInit(){
	var tooltips = $("a.tooltip");
	if(tooltips!=null){
		$.each(tooltips, function() {
			 $(this).hover(
				  function () {
					//alert($(this).children("span"));
					var span = $(this).children("span")
					$(span).fadeIn(190);
				  }, 
				  function () {
					var span =  $(this).children("span");
					$(span).fadeOut(190);
				  }
				);
		   });
	}
}

function testimonialsInit(){
	var testimonials = $(".side_testimony");
	if(testimonials!=null){
		//for(i=0; i<testimonials.length; i++){
		$.each(testimonials, function(){
			var testimony 	= $(this);
			var shortTest 	= $("div#short", testimony);
			var fullTest 	= $("div#full", testimony);
			var shortLink 	= $("a.test_link", shortTest);
			var fullLink 	= $("a.test_link", fullTest);
			$(shortLink).click(
				function () {
					$(shortTest).toggle();
					$(fullTest).toggle();
			});
			$(fullLink).click(
				function () {
					$(shortTest).toggle();
					$(fullTest).toggle();
			});
		});
	}
}

