jQuery(document).ready(function($) {
	// for µü®q Â½Ä¶
	$('div.li_translations').css('cursor','pointer').click(function() {
		pm = $(this).find('span');
		tr = $(this).find('div');
		if(pm.html() == '¡Ï') {
			pm.html('¡Ð');
			tr.fadeIn();
		} else {
			pm.html('¡Ï');
			tr.fadeOut();
		}
	});
	
	// for GreyBox Plugin in posts
	$('div.post').each(function() {
		post_id = $(this).attr('id');
		
		$(this).find('a[href^=http]:has(img)').each(function() {
			$(this).attr('rel', 'gb_imageset[img-' + post_id + ']');
		});
		$(this).find('a[rel*="external"]').each(function() {
			$(this).attr('rel', 'gb_pageset[lnk-' + post_id + ']');
		});
	});
	
	//theme function
	/*
	$('ruby *').not('rb').each(function() {
		$(this).css('display', 'none');
	});
	*/
});