$(function(){

	$('table.profile td[nowrap].profile_bottom font')
		.css({'color':'#CCFF00','padding-left':'2px'})
		.parent()
		.removeAttr('nowrap')
		.css({'background':'#333333','width':'5.5em'});


	$('table.profile td iframe').parent().addClass('frame');


	if($.cookie('alivechat')) {

		$('.freeChatPreviewNormal, #prevRightColumn').css({'display':'none'});
		$('.eachFunc').removeClass('normal').addClass('large');
		$('.freeChatPreviewLarge').show();
		$('.previewSwitch li.switch a').html('<span><img src="/ncimg/preview/arrow_to_normal.gif" />Standard Size</span>');
		$('#prevLeftColumn, .prevname').css({'width':'785px'});

		$('.previewSwitch li.switch a').toggle(
			function(){ // ---------------------------------------------LARGE -> NORMAL
				$.cookie('alivechat', '', { expires: -1 });
				$('.freeChatPreviewLarge:visible').hide();
				$('.freeChatPreviewNormal:hidden').fadeIn('slow');
				$('#prevLeftColumn').css({'width':'475px'});
				$('.prevname').hide().fadeIn('0').css({'width':'475px'});
				$('.previewSwitch li.switch a').html('<span><img src="/ncimg/preview/arrow_to_large.gif" />Large Size</span>');
				$('#prevRightColumn').show('0');//fadein('0')
				$('.eachFunc').removeClass('large').addClass('normal');
			},
			function(){ // ---------------------------------------------NORMAL -> LARGE
				$.cookie('alivechat', 'prevsize', { expires: 30 });
				$('.freeChatPreviewNormal:visible').hide();
				$('.freeChatPreviewLarge:hidden').fadeIn('slow');
				$('#prevRightColumn').hide();
				$('#prevLeftColumn').css({'width':'785px'});
				$('.prevname').hide().fadeIn('slow').css({'width':'785px'});
				$('.previewSwitch li.switch a').html('<span><img src="/ncimg/preview/arrow_to_normal.gif" />Standard Size</span>');
				//$('.previewSwitch').html('<img src="/ncimg/preview/to_normal.gif" alt="Standard Size" />');
				$('.eachFunc').removeClass('normal').addClass('large');
			}
		);
	} else {
		$('.previewSwitch li.switch a').toggle(
			function(){ // ---------------------------------------------NORMAL -> LARGE
				$.cookie('alivechat', 'prevsize', { expires: 30 });
				$('.freeChatPreviewNormal:visible').hide();
				$('.freeChatPreviewLarge:hidden').fadeIn('slow');
				$('#prevRightColumn').hide();
				$('#prevLeftColumn').css({'width':'785px'});
				$('.prevname').hide().fadeIn('slow').css({'width':'785px'});
				$('.previewSwitch li.switch a').html('<span><img src="/ncimg/preview/arrow_to_normal.gif" />Standard Size</span>');
				$('.eachFunc').removeClass('normal').addClass('large');
			},
			function(){ // ---------------------------------------------LARGE -> NORMAL
				$.cookie('alivechat', '', { expires: -1 });
				$('.freeChatPreviewLarge:visible').hide();
				$('.freeChatPreviewNormal:hidden').fadeIn('slow');
				$('#prevLeftColumn').css({'width':'475px'});
				$('.prevname').hide().fadeIn('0').css({'width':'475px'});
				$('.previewSwitch li.switch a').html('<span><img src="/ncimg/preview/arrow_to_large.gif" />Large Size</span>');
				$('#prevRightColumn').show('0');//fadein('0')
				$('.eachFunc').removeClass('large').addClass('normal');
			}
		);
	}


});
