// JavaScript Document$(document).ready(function() {  	$('#content > ul').tabs({ fx: { opacity: 'toggle', height: 'toggle' } });	$('#portitems,#portitems2,#portitems3,#portitems4,#portitems5,#portitems6').tabs({ fx: { opacity: 'toggle' } });	$('#weight1, #weight2').example('Click here to enter your weight');		$('#weight1').focus(function() { hideAll(); $('#msg1').show(500) });  		$('#weight2').focus(function() { hideAll(); $('#msg2').show(500); });  		  		$('#close1').click(function() { $('#msg1').hide(500); });  		$('#close2').click(function() { $('#msg2').hide(500); });});$(document).ready(function(){	$.localScroll();});function hideAll() {  $('div[id^=msg]').hide(500);}