jQuery(function($) {
	
	jQuery('#changePass').live("click", function(){
		  jQuery.openPopup({
			  url: www_root + 'users/changepassword',
		       height: 250,
		       width: 460,
		       iframe: true,
		       modal: false,
		       title: __('Change Password', true),
		       img_loader: imgloading.type1
			  });
		  return false;
		});
	
});	