jQuery(document).ready(function(){
	jQuery("#tabs > ul li").hover(function(){
		$(this).addClass("ui-state-hover");
	},
	function(){
		$(this).removeClass("ui-state-hover");
	});
	setTimeout(function(){jQuery(".welcomebox").show("clip", 1700)}, 0);
});