   $j(function(){     
		/*
		$j('#tab_slider').cycle({
            timeout: 7000,  // milliseconds between slide transitions (0 to disable auto advance)
            fx:      'turnDown', // choose your transition type, ex: fade, scrollUp, shuffle, etc...      
			easing: 'bounceout',
			delay:   -100,
            pause:   1,	  // true to enable "pause on hover"
			pager: '#hidden-nav',
			before: onBefore,
			after: onAfter,
			manualTrump:   true
        }); 		
        */
     });
	 
	 // Manually go to a country's listings via the mouseover
	 function selectCountry(i){
		$j('#tab_slider').cycle('pause');
		$j('#tab_slider').cycle(i);  
	 }
	 // Strip away the highlighted formatting
	 function onBefore(curr,next,opts) {
		$j('#tabs').find('li').removeClass('activeS');
	 }
	 // Format the active 'pager' li to highlighted
	 function onAfter(curr,next,opts) {
		var curr = opts.currSlide;
		$j('#tabs').find('li').removeClass('activeS') 
				.filter('li:eq('+curr+')').addClass('activeS'); 
	}
	 

