$(document).ready(function () {
	// Rollover Image
	$('div#about_link ul li img, div#r_link ul li img, div#main_box a img').each(function(){
		if ($(this).attr('src')){
			$(this).hover(
				function() { $(this).attr('src', $(this).attr('src').replace('_off.', '_on.')); },
				function() { $(this).attr('src', $(this).attr('src').replace('_on.', '_off.')); }
			);
		}
	});
});

$(function(){
	$('form input#keyword')
	.focus(function() {
		if($(this).val() == $(this).attr('defaultValue')) {
			$(this).css('color', '#000');
			$(this).val('');
		}
	})
	.blur(function() {
		if(jQuery.trim($(this).val()) == '') {
			$(this).css('color', '#999');
			$(this).val($(this).attr('defaultValue'));
		}
	});
});

