// JavaScript Document
$(document).ready( function() {
	
	$(".range_tab").find("ul").hide();
	$(".range_on").find("ul").show();
	
	$(".range_tab").hover( function() {
									   
		$(".range_tab").removeClass("range_on").find("ul").hide();
		$(this).addClass("range_on").find("ul").show();		
		
		var sLabel = $("a.infolink", this).attr("title");
		
		document.flashbanner.TGotoLabel("_level0/",sLabel);
		
		
	}, function() {  });
	
	/* Tabs */
	$.tabs("feature_tabs");
	
});


function thisMovie(movieName) {
  // IE and Netscape refer to the movie object differently.
  // This function returns the appropriate syntax depending on the browser.
  if (navigator.appName.indexOf ("Microsoft") !=-1) {
    return window[movieName];
  } else {
    return document[movieName];
  }
}
