jQuery(function($) {
    $('.blink')
    .focus(function() {
        if($(this).val() == $(this).attr('title')) {
            $(this).val('');
        }
    })
    .blur(function() {
        if($(this).val() == '') {
            $(this).val($(this).attr('title'));
        }
    });
    
    // IE6 png fix
    if($.browser.msie && $.browser.version.substr(0,1) == 6) {
		DD_belatedPNG.fix('#logo a, #nav a');
    }

	if ($('html').attr('lang') == 'es-ES') {
		$('.top-links a').each(function() {
			var href = $(this).attr('href');
			if (href.match(/h1\/$/)) {
				href += 'es/';
			}
			$(this).attr('href', href);
		});
	}
});
