jQuery.noConflict();
jQuery(document).ready(function () {
	jQuery('#loginForm input').each(function () {
		if (jQuery(this).val() == '') {
			jQuery(this).val(jQuery(this).attr('defaultvalue'));
		}
	}).focus(function () {
		if (jQuery(this).val() == jQuery(this).attr('defaultvalue')) {
			jQuery(this).val('');
		}
	}).blur(function () {
		if (jQuery(this).val() == '') {
			jQuery(this).val(jQuery(this).attr('defaultvalue'));
		}
	});
});
