jQuery(document).ready(function($){
$('#tab-title span').mouseover(function(){ 
	$(this).addClass("current").siblings().removeClass(); 
	$("."+$(this).attr("id")).show().siblings().hide(); 
});});
jQuery(document).ready(function($){
$('#tabweb-title span').mouseover(function(){ 
	$(this).addClass("current").siblings().removeClass(); 
	$("."+$(this).attr("id")).show().siblings().hide(); 
});});

jQuery(document).ready(function($){
 
$("a").mouseover(function(e){
	this.myTitle = this.title;
	this.myHref = this.href;
	this.myHref = (this.myHref.length > 50 ? this.myHref.toString().substring(0,50)+"..." : this.myHref);
	this.title = "";
	var floattitle = "<div id='floattitle'><p>"+this.myTitle+"<em>"+this.myHref+"</em>"+"</p></div>";
	$('body').append(floattitle);
	$('#floattitle').css({"opacity":"0.9","top":(e.pageY+20)+"px","left":(e.pageX+10)+"px"}).show('fast');
}).mouseout(function(){this.title = this.myTitle;$('#floattitle').remove();
}).mousemove(function(e){$('#floattitle').css({"top":(e.pageY+20)+"px","left":(e.pageX+10)+"px"});
});
});