$(function(){
		   $.ajaxSetup({ cache: false });
		   $('.rank_tab_content').hide();
		   $('#rank_tab_1_content').show();
		   $('.tab_1').css('top','0');
		   $('.tab_1').attr('name','2');
		   var tab = $('.rank_tab img');
		   $(tab).mouseover(function(){
								$('.rank_tab').find('img[name*=1]').css('top','15px');
							    $(this).css('top','0');
								});
		   $(tab).mouseout(function(){
								$('.rank_tab').find('img[name*=1]').css('top','15px');
								});
		   $(tab).click(function(){
								 var tabname = $(this).attr('title');
								 $('.rank_tab img').attr('name','1');
								 $('.rank_tab_content').hide();
								 $("#"+ tabname +"").show();
								 $(this).attr('name','2');
								 $(this).css('top','0');
								 })
		    $('.fri_btn').css('cursor','pointer')
		    $('.fri_btn').click(function(){
                                 var t_text = $(this).attr('alt');
								 $('h2.fri_t').text(t_text);
								 })
			$('.me_box tr:odd').addClass('me_bg');
		   
		   })