jQuery(document).ready(function() {
	   
	init();
		
//	jQuery('#sectionLinks> div').hide();  
//	jQuery('#sectionLinks> h3').click(function() {
//			var $nextDiv = jQuery(this).next( );
//			var $visibleSiblings = $nextDiv.siblings('div:visible');
//			if ($visibleSiblings.length ) {
//					$visibleSiblings.slideUp('fast', function() {
//				$nextDiv.slideToggle('fast');
//		 });
//			 } else {
//				$nextDiv.slideToggle('fast');
//		 }
//	});
		
	jQuery("#main table.stripeMe tr").mouseover(function() {jQuery(this).addClass("over");}).mouseout(function() {jQuery(this).removeClass("over");});
	
	jQuery('#main #stldata table.stripeMe:has(tbody)').tablesorter({
					widgets: ['zebra']				   
			});
	
	jQuery('#main table.stripeMe th').css("padding-right", "15px");
});

/** From DROPDOWN.JS */
function land(ref, target)
{
lowtarget=target.toLowerCase();
if (lowtarget=="_self") {window.location=loc;}
else {if (lowtarget=="_top") {top.location=loc;}
else {if (lowtarget=="_blank") {window.open(loc);}
else {if (lowtarget=="_parent") {parent.location=loc;}
else {parent.frames[target].location=loc;};
}}}
}

function jump(menu)
{
ref=menu.choice.options[menu.choice.selectedIndex].value;
splitc=ref.lastIndexOf("*");
target="";
if (splitc!=-1)
{loc=ref.substring(0,splitc);
target=ref.substring(splitc+1,1000);}
else {loc=ref; target="_self";};
if (ref != "") {land(loc,target);}
}

function jumpsport(menu)
{
ref=menu.sport.options[menu.sport.selectedIndex].value;
splitc=ref.lastIndexOf("*");
target="";
if (splitc!=-1)
{loc=ref.substring(0,splitc);
target=ref.substring(splitc+1,1000);}
else {loc=ref; target="_self";};
if (ref != "") {land(loc,target);}
}

function jumpgroup(menu)
{
ref=menu.groups.options[menu.groups.selectedIndex].value;
splitc=ref.lastIndexOf("*");
target="";
if (splitc!=-1)
{loc=ref.substring(0,splitc);
target=ref.substring(splitc+1,1000);}
else {loc=ref; target="_self";};
if (ref != "") {land(loc,target);}
}

