// JavaScript Document
			$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements.
				/*$('a[@rel*=lightbox]').colorbox({transition:"fade"});*/
				
				//onclick reset input value
				$('#login-default').click(
					function() {
						if (this.value == this.defaultValue) {
							this.value = '';
						}
					}
					);
				$('#login-default').blur(
					function() {
						if (this.value == '') {
							this.value = this.defaultValue;
						}
					}
				);
				
						
			});	
