jQuery(document).ready(function() {
	try {
		jQuery('#header .join-now').mousedown(function() {
			jQuery(this).find('img:first').attr('src', _f10.stylesheetUrl + '/images/register_o.png');
		});
		jQuery('#header .join-now').mouseup(function() {
			jQuery(this).find('img:first').attr('src', _f10.stylesheetUrl + '/images/register.png');
		});

		jQuery('.wordcamp-fukuoka-2010-attend :checkbox.exclusive').change(function() {
			jQuery(this).siblings(':checkbox.exclusive').removeAttr('checked');
		});

		jQuery('.badges textarea').click(function() {
			this.select();
		});

	} catch (e) {
	}
});