(function($){
	$.fn.cleanDubleSpace = function() {
		while ($(this).val().search('  ') != -1) {
			$(this).val($(this).val().replace('  ', ' '));
		}
		return this;
	}
})(jQuery);

$(function() {
	$('a').add('img').bind('mouseup', function(event) { self.focus(); });
	$('.cnt img').css('opacity','0.5').hover(function(event) { $(this).css('opacity','1'); }, function(event) { $(this).css('opacity','0.5'); });
	$('.outer').corner();
	$('.inner').corner("8px").hover(function(event) { $(this).addClass('act'); }, function(event) { $(this).removeClass('act'); });
	$('.subsubheadDiv').bind('click', function(event) { document.location.href = unescape($(this).children('a').attr('href')); });
	$('.subsubmainDiv211').corner("8px");
});

