	$(function() 
		{
			$('#tabs_container > ul').tabs();
		});

        var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
        document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
		
	$(document).ready( function() 
		{
			// Hide the data portions that are tab specific
			$('#tabs_container > ul li a span').bind ( 'click' , function ()
				{
					var a = $(this).html().replace ( / /g, "_" );				
					a = a.replace ( /'/g, "" );
					a = a.replace ( /&amp;/g, "" );
					a = a.replace ( /\?/g, "" );
					a = a.replace ( /&/g, "" );					
					$('div.tabs-panel').addClass ('ui-tabs-hide');
					$('div.'+a).removeClass ('ui-tabs-hide');
					
					if ( $(this).html() == 'Home' )
					{
						$('tr#FlashBlock').show ();
						$('.DetailHomeHide').hide ();
						
					}
					else
					{
						$('tr#FlashBlock').hide ();
						$('.DetailHomeHide').show ();
					}
				});
                
            var pageTracker = _gat._getTracker("UA-2655980-3");
            pageTracker._trackPageview();                
                
		});		