jQuery.noConflict();
jQuery(document).ready(function() {
			jQuery('input[type="text"]').addClass("idleField_user");
       		jQuery('input[type="text"]').focus(function() {
       			jQuery(this).removeClass("idleField_user").addClass("focusField_user");
    		    if (this.value == this.defaultValue){ 
    		    	this.value = '';
				}
				if(this.value != this.defaultValue){
	    			this.select();
	    		}
    		});
			jQuery('input[type="password"]').addClass("idleField_password");
			jQuery('input[type="password"]').focus(function() {
       			jQuery(this).removeClass("idleField_password").addClass("focusField_password");
    		    if (this.value == this.defaultValue){ 
    		    	this.value = '';
				}
				if(this.value != this.defaultValue){
	    			this.select();
	    		}
    		});
    		jQuery('input[type="text"]').blur(function() {
    			jQuery(this).removeClass("focusField_user").addClass("idleField_user");
    		    if (jQuery.trim(this.value) == ''){
			    	this.value = (this.defaultValue ? this.defaultValue : '');
				}
    		});
				jQuery('input[type="password"]').blur(function() {
    			jQuery(this).removeClass("focusField_password").addClass("idleField_password");
    		    if (jQuery.trim(this.value) == ''){
			    	this.value = (this.defaultValue ? this.defaultValue : '');
				}
    		});
		});	

//jQuery FaceBox
jQuery(document).ready(function(jQuery) {
  jQuery('a[rel*=facebox]').facebox()
})		

