
    $(document).ready(function() {
        $('div#websites').bind('click', function(e){
            $('div#weblinks').slideDown();
        });
        $('div#weblinks').bind('mouseleave', function(e){
            $('div#weblinks').slideUp();
        });
        $('.glossary').tooltip({
			track: true,
			delay: 0,
			showURL: false,
			showBody: " - ",
			extraClass: "pretty",
			fixPNG: true,
			left: -120
		});
       
	    $(".ttip").jHelperTip(
	    {
			trigger: "hover",
			source: "ajax",
			type: "GET", 
			url: '/inline_editor/_lib_editor/editor_functions.php?getload=invest',
			
			
			
			autoClose: false
		});
	
		if($('#t1') && $('#t2')&& $('#t3') ){
	   		$h1 = $('#t1').height();
	   		$h2 = $('#t2').height();
	   		$h3 = $('#t3').height();
	   		$n = $h1>=$h2 ? $h1 : $h2;
	   		$nh =$n>=$h3 ? $n : $h3;
	   		$('#t1').css('height',$nh+'px');
	   		$('#t2').css('height',$nh+'px');
	   		$('#t3').css('height',$nh+'px');	
		}

    });
    
    

