function c(m){
	(m)
}
$(document).ready(function(){
	$('td.codename').hover(function(){
		$(this).parent().css('background','#cccddd');
		$(this).children('span.code').hide();
		$(this).children('span.name').fadeIn('fast');
		$('div.exchange_box').css('height','99%');
	}, function(){
		$(this).parent().css('background','none');
		$(this).children('span.name').fadeOut('fast');
		$(this).children('span.code').show();
		$('div.exchange_box').css('height','95%');
		$('div.exchange_box').css('height','101%');
	});
});
