/* ****************************************************

	@file		  blogs-global.js
	@description  Comportements globaux en front-end
	@author       remi (ixmedia.com)
	@version	  20090708

***************************************************** */

if ( window.jQuery ) {

(function($){

	$(function() {
		
		$('#login-form #signup-submit').remove();

		$('#login-form #user_login').focus(function() {
			if ( $(this).val() == this.defaultValue ) {
				$(this).val('');
			}
		}).blur(function() {
			if ( $(this).val() == '' ) {
				$(this).val(this.defaultValue);
			}
		});
		
	});

	})(jQuery);

}