$(document).ready(function()
{
	// --- right menu click toggle
	$('.r_btn').toggle(function()
	{
		var ID = $(this).attr('id').substr(6);
		
		$(this).css(
		{
			'background': 'url("'+ROOT_PATH+'image/btn/btn_'+ID+'_out.jpg") no-repeat'
		}).animate({'height' : '96px'}, 200).attr('rel', 'ready').find('p').show();
		
	}, function()
	{
		var ID = $(this).attr('id').substr(6);
		
		$(this).css(
		{
			'background': 'url("'+ROOT_PATH+'image/btn/btn_'+ID+'_off.jpg") no-repeat'
		}).animate({'height' : '0px'}, 200).attr('rel', '').find('p').hide();
	});
	
	
});
