$.fn.clearOnFocus = function(){
    return this.focus(function(){
        var v = $(this).val();
        $(this).val( v === this.defaultValue ? '' : v );
    }).blur(function(){
        var v = $(this).val();
        $(this).val( v.match(/^\s+$|^$/) ? this.defaultValue : v );
    });
 
};
$(function() {
	$(".promo_box").not(":first").hide();
	$("#info_promo_list li a").hover(function() {
		var target = $(this).attr("href");
		$(".promo_box").hide();
		$(target).show();
		return false;
	}).click(function(e) {
		e.stopPropagation();
		return false;
	});
	$("#login_username, #login_password").clearOnFocus();
});

