jQuery.noConflict();
j$ = jQuery;

j$().ready(function(){
	j$('#userid').bind('focus', function(){
		j$(this).val('');
		j$(this).removeClass('colorgrey03');
	});
});
