jQuery(document).ready(function(){
								
	// init lightbox:
	jQuery('a[rel*=lightbox]').lightbox();
			
	// show js-related elements:
	jQuery(".js").show();
		
	
	// password toggle input
	/*
	jQuery("#password2").show();
	jQuery("#password").hide();		
	
    jQuery("#password2").focus(function() {
      jQuery("#password").show().select();
	  jQuery("#password2").hide();
    });
	
    jQuery("#password").blur(function() {
      pwVal = jQuery("#password").val().replace(/ /g, "");
	  if(pwVal == ""){
		  jQuery("#password2").show();
		  jQuery("#password").hide();
	  }
    });
	*/
})
